├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── parser.js ├── package.json └── test ├── fixtures ├── module.os └── module_en.os ├── parser_spec.js └── parser_spec_en.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/README.md -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/lib/parser.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/module.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/test/fixtures/module.os -------------------------------------------------------------------------------- /test/fixtures/module_en.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/test/fixtures/module_en.os -------------------------------------------------------------------------------- /test/parser_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/test/parser_spec.js -------------------------------------------------------------------------------- /test/parser_spec_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xDrivenDevelopment/onec-syntaxparser/HEAD/test/parser_spec_en.js --------------------------------------------------------------------------------