├── .gitignore ├── LICENSE ├── README.md ├── esprima-fb-patched └── esprima.js ├── index.js ├── package.json └── test ├── fixtures ├── 0in.js ├── 0out.js ├── 1in.js └── 1out.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | node_modules/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/README.md -------------------------------------------------------------------------------- /esprima-fb-patched/esprima.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/esprima-fb-patched/esprima.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/0in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/test/fixtures/0in.js -------------------------------------------------------------------------------- /test/fixtures/0out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/test/fixtures/0out.js -------------------------------------------------------------------------------- /test/fixtures/1in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/test/fixtures/1in.js -------------------------------------------------------------------------------- /test/fixtures/1out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/test/fixtures/1out.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesam/angular-jsx/HEAD/test/test.js --------------------------------------------------------------------------------