├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── ReadMe.md ├── bin ├── rex-node.js └── test │ ├── a.js │ ├── b.js │ ├── json │ └── test.json │ └── url.js ├── dev ├── ReadMe.md ├── a.js ├── b.js ├── c.css ├── export.js ├── index.css ├── index.html ├── index.js ├── rex-es.js ├── temp.html └── test.json ├── dist ├── rex-api.bundle.js ├── rex-api.min.js ├── rex-browser-helper.bundle.js ├── rex-browser-helper.min.js ├── rex.bundle.js └── rex.min.js ├── doc ├── image │ └── compare.jpg ├── note.txt ├── read-me │ ├── chinese.md │ ├── config.js │ ├── english.md │ └── template.md └── todo.txt ├── node ├── ReadMe.md ├── dev.js ├── index.js ├── read-me.js └── uglify.js ├── old ├── ReadMe.md ├── rex-0.1.0.js ├── rex-0.2.0.js ├── rex-0.3.0.js ├── rex-0.4.0.js ├── rex-es-1.0.0.js ├── test-regexp │ ├── index.html │ ├── rex-regexp.js │ ├── rex-regexp2.js │ └── v8-regexp-parser.cc └── test │ ├── ReadMe.md │ ├── a.css │ ├── a.js │ ├── all │ ├── array.js │ ├── asi.js │ ├── b.js │ ├── babel.html │ ├── babel.min.js │ ├── class.js │ ├── cn.js │ ├── comment.js │ ├── condition.js │ ├── ct.js │ ├── dot.js │ ├── enum.js │ ├── es6.js │ ├── es6_1.js │ ├── es6_cn.js │ ├── es6_new.js │ ├── es6_new.map │ ├── es6_new2.js │ ├── es6_new3.js │ ├── function.js │ ├── index.htm │ ├── index2.html │ ├── jQun-node.js │ ├── jQun.js │ ├── jQun2.js │ ├── jQun3.js │ ├── next.md │ ├── object.js │ ├── profile.js │ ├── rex - 副本.js │ ├── rex.js │ ├── server.js │ ├── static-class.js │ ├── test.js │ ├── test2.js │ ├── test3.js │ ├── test_1.js │ ├── traceur.html │ ├── traceur.js │ └── web.config ├── package.json ├── source ├── ReadMe.md ├── map │ ├── ReadMe.md │ ├── accessor-bracket.js │ ├── accessor-dot.js │ ├── argument-default.js │ ├── argument-destructuring.js │ ├── argument-rest.js │ ├── arguments.js │ ├── array-spread-item.js │ ├── array.js │ ├── arrow.js │ ├── basic-tag.js │ ├── binary-all.js │ ├── binary-base.js │ ├── binary-extension.js │ ├── block.js │ ├── brace-body.js │ ├── break-continue.js │ ├── call.js │ ├── case.js │ ├── class-accessor.js │ ├── class-body.js │ ├── class-constructor.js │ ├── class-declaration.js │ ├── class-extends.js │ ├── class-helper-expression.js │ ├── class-property-initializer.js │ ├── class-property-name.js │ ├── class.js │ ├── comma.js │ ├── comment.js │ ├── common-expression.js │ ├── const.js │ ├── declaration-array-object-item.js │ ├── declaration-array-rest-item.js │ ├── declaration-array.js │ ├── declaration-object.js │ ├── declaration-property-name-separator.js │ ├── declaration-property-name.js │ ├── declaration-property-rest-item.js │ ├── declaration-property-value.js │ ├── declaration-rest-item.js │ ├── destructuring-assginment.js │ ├── destructuring.js │ ├── do-while.js │ ├── ecmaScript-helper.js │ ├── ecmaScript-parser.js │ ├── ecmaScript-statement.js │ ├── ecmaScript-statements.js │ ├── ecmaScript-tags.js │ ├── exponentiation.js │ ├── export-all.js │ ├── export-default.js │ ├── export-multiple.js │ ├── export.js │ ├── file-footer.js │ ├── file-header.js │ ├── file-position.js │ ├── for-condition.js │ ├── for-iterator.js │ ├── for.js │ ├── function-body.js │ ├── function-declaration.js │ ├── function.js │ ├── grouping.js │ ├── identifier.js │ ├── if.js │ ├── import-all.js │ ├── import-default.js │ ├── import-multiple.js │ ├── import.js │ ├── jsx-attribute.js │ ├── jsx-children.js │ ├── jsx-placeholder.js │ ├── jsx-type.js │ ├── jsx.js │ ├── label.js │ ├── let.js │ ├── line-terminator.js │ ├── literal-base.js │ ├── literal-extension.js │ ├── mathematical-number.js │ ├── nested-declaration-array-item.js │ ├── object.js │ ├── property-accessor.js │ ├── property-computed-name.js │ ├── property-identifier-name.js │ ├── property-initializer.js │ ├── property-iteral-name.js │ ├── property-shorthand-method.js │ ├── property-spread-item.js │ ├── property.js │ ├── question-assignment.js │ ├── return.js │ ├── semicolon.js │ ├── spread.js │ ├── static.js │ ├── super-call.js │ ├── super-property-assignment.js │ ├── super-property.js │ ├── super.js │ ├── switch.js │ ├── tags-base.js │ ├── tags-helper.js │ ├── tags-others.js │ ├── target.js │ ├── template-content.js │ ├── template-parameter.js │ ├── template-placeholder.js │ ├── template.js │ ├── terminated-brach-flow.js │ ├── terminated-flow.js │ ├── ternary.js │ ├── throw.js │ ├── try-catch.js │ ├── try-function.js │ ├── unary-assginment-extension.js │ ├── unary-assginment.js │ ├── unary-base.js │ ├── unary-exec.js │ ├── unary-non-assginment.js │ ├── var.js │ ├── variable.js │ ├── while.js │ └── yield.js ├── rex-basic.js ├── rex-browser.js ├── rex-core.js ├── rex-es.js ├── rex-helper.js └── rex-syntax.js └── test ├── ReadMe.md ├── array ├── index.js └── source.js ├── arrow ├── index.js └── source.js ├── binary ├── index.js └── source.js ├── block ├── index.js └── source.js ├── bracketAccessor ├── index.js └── source.js ├── break └── index.js ├── call ├── index.js └── source.js ├── class ├── index.js ├── source1.js ├── source2.js └── source3.js ├── comma ├── index.js └── source.js ├── comment ├── index.js └── source.js ├── const └── index.js ├── continue └── index.js ├── destructuring ├── index.js └── source.js ├── do-while ├── index.js └── source.js ├── dot └── index.js ├── for ├── index.js └── source.js ├── function ├── index.js └── source.js ├── generator ├── index.js └── source.js ├── grouping ├── index.js └── source.js ├── if ├── index.js └── source.js ├── index.html ├── jsx ├── index.js └── source.js ├── label ├── index.js └── source.js ├── let └── index.js ├── module ├── a.css ├── a.js ├── a.json ├── a.xml ├── export.js ├── import.js ├── index.js └── source.js ├── number └── index.js ├── object ├── index.js └── source.js ├── question-assignment ├── index.js └── source.js ├── regexp └── index.js ├── return ├── index.js └── source.js ├── rex-test.js ├── semicolon └── index.js ├── spread ├── index.js └── source.js ├── string ├── index.js └── source.js ├── super ├── index.js └── source.js ├── switch ├── index.js └── source.js ├── target └── index.js ├── template ├── index.js └── source.js ├── ternary ├── index.js └── source.js ├── throw └── index.js ├── try-catch ├── index.js └── source.js ├── try-function ├── index.js └── source.js ├── unary ├── index.js └── source.js ├── var ├── index.js └── source.js ├── variable └── index.js └── while ├── index.js └── source.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/ReadMe.md -------------------------------------------------------------------------------- /bin/rex-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/bin/rex-node.js -------------------------------------------------------------------------------- /bin/test/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/bin/test/a.js -------------------------------------------------------------------------------- /bin/test/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/bin/test/b.js -------------------------------------------------------------------------------- /bin/test/json/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "world" 3 | } -------------------------------------------------------------------------------- /bin/test/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/bin/test/url.js -------------------------------------------------------------------------------- /dev/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dev/ReadMe.md -------------------------------------------------------------------------------- /dev/a.js: -------------------------------------------------------------------------------- 1 | import "./b.js"; -------------------------------------------------------------------------------- /dev/b.js: -------------------------------------------------------------------------------- 1 | import "./index.js"; -------------------------------------------------------------------------------- /dev/c.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dev/c.css -------------------------------------------------------------------------------- /dev/export.js: -------------------------------------------------------------------------------- 1 | export default "hello world"; -------------------------------------------------------------------------------- /dev/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dev/index.css -------------------------------------------------------------------------------- /dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dev/index.html -------------------------------------------------------------------------------- /dev/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dev/index.js -------------------------------------------------------------------------------- /dev/rex-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dev/rex-es.js -------------------------------------------------------------------------------- /dev/temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dev/temp.html -------------------------------------------------------------------------------- /dev/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "a" : 1 3 | } -------------------------------------------------------------------------------- /dist/rex-api.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dist/rex-api.bundle.js -------------------------------------------------------------------------------- /dist/rex-api.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dist/rex-api.min.js -------------------------------------------------------------------------------- /dist/rex-browser-helper.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dist/rex-browser-helper.bundle.js -------------------------------------------------------------------------------- /dist/rex-browser-helper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dist/rex-browser-helper.min.js -------------------------------------------------------------------------------- /dist/rex.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dist/rex.bundle.js -------------------------------------------------------------------------------- /dist/rex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/dist/rex.min.js -------------------------------------------------------------------------------- /doc/image/compare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/doc/image/compare.jpg -------------------------------------------------------------------------------- /doc/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/doc/note.txt -------------------------------------------------------------------------------- /doc/read-me/chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/doc/read-me/chinese.md -------------------------------------------------------------------------------- /doc/read-me/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/doc/read-me/config.js -------------------------------------------------------------------------------- /doc/read-me/english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/doc/read-me/english.md -------------------------------------------------------------------------------- /doc/read-me/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/doc/read-me/template.md -------------------------------------------------------------------------------- /doc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/doc/todo.txt -------------------------------------------------------------------------------- /node/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/node/ReadMe.md -------------------------------------------------------------------------------- /node/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/node/dev.js -------------------------------------------------------------------------------- /node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/node/index.js -------------------------------------------------------------------------------- /node/read-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/node/read-me.js -------------------------------------------------------------------------------- /node/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/node/uglify.js -------------------------------------------------------------------------------- /old/ReadMe.md: -------------------------------------------------------------------------------- 1 | [详见](http://rexjs.org/#!/book/theory/version.md) -------------------------------------------------------------------------------- /old/rex-0.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/rex-0.1.0.js -------------------------------------------------------------------------------- /old/rex-0.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/rex-0.2.0.js -------------------------------------------------------------------------------- /old/rex-0.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/rex-0.3.0.js -------------------------------------------------------------------------------- /old/rex-0.4.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/rex-0.4.0.js -------------------------------------------------------------------------------- /old/rex-es-1.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/rex-es-1.0.0.js -------------------------------------------------------------------------------- /old/test-regexp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test-regexp/index.html -------------------------------------------------------------------------------- /old/test-regexp/rex-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test-regexp/rex-regexp.js -------------------------------------------------------------------------------- /old/test-regexp/rex-regexp2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test-regexp/rex-regexp2.js -------------------------------------------------------------------------------- /old/test-regexp/v8-regexp-parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test-regexp/v8-regexp-parser.cc -------------------------------------------------------------------------------- /old/test/ReadMe.md: -------------------------------------------------------------------------------- 1 | 这是个测试文件夹,并不能作为任何参考。 -------------------------------------------------------------------------------- /old/test/a.css: -------------------------------------------------------------------------------- 1 | input { 2 | background-color : #666; 3 | 4 | } -------------------------------------------------------------------------------- /old/test/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/a.js -------------------------------------------------------------------------------- /old/test/all: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old/test/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/array.js -------------------------------------------------------------------------------- /old/test/asi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/asi.js -------------------------------------------------------------------------------- /old/test/b.js: -------------------------------------------------------------------------------- 1 | b , c,d 2 | b = 999 -------------------------------------------------------------------------------- /old/test/babel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/babel.html -------------------------------------------------------------------------------- /old/test/babel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/babel.min.js -------------------------------------------------------------------------------- /old/test/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/class.js -------------------------------------------------------------------------------- /old/test/cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/cn.js -------------------------------------------------------------------------------- /old/test/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/comment.js -------------------------------------------------------------------------------- /old/test/condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/condition.js -------------------------------------------------------------------------------- /old/test/ct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/ct.js -------------------------------------------------------------------------------- /old/test/dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/dot.js -------------------------------------------------------------------------------- /old/test/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/enum.js -------------------------------------------------------------------------------- /old/test/es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/es6.js -------------------------------------------------------------------------------- /old/test/es6_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/es6_1.js -------------------------------------------------------------------------------- /old/test/es6_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/es6_cn.js -------------------------------------------------------------------------------- /old/test/es6_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/es6_new.js -------------------------------------------------------------------------------- /old/test/es6_new.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/es6_new.map -------------------------------------------------------------------------------- /old/test/es6_new2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/es6_new2.js -------------------------------------------------------------------------------- /old/test/es6_new3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/es6_new3.js -------------------------------------------------------------------------------- /old/test/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/function.js -------------------------------------------------------------------------------- /old/test/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/index.htm -------------------------------------------------------------------------------- /old/test/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/index2.html -------------------------------------------------------------------------------- /old/test/jQun-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/jQun-node.js -------------------------------------------------------------------------------- /old/test/jQun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/jQun.js -------------------------------------------------------------------------------- /old/test/jQun2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/jQun2.js -------------------------------------------------------------------------------- /old/test/jQun3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/jQun3.js -------------------------------------------------------------------------------- /old/test/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/next.md -------------------------------------------------------------------------------- /old/test/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/object.js -------------------------------------------------------------------------------- /old/test/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/profile.js -------------------------------------------------------------------------------- /old/test/rex - 副本.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/rex - 副本.js -------------------------------------------------------------------------------- /old/test/rex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/rex.js -------------------------------------------------------------------------------- /old/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/server.js -------------------------------------------------------------------------------- /old/test/static-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/static-class.js -------------------------------------------------------------------------------- /old/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/test.js -------------------------------------------------------------------------------- /old/test/test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/test2.js -------------------------------------------------------------------------------- /old/test/test3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/test3.js -------------------------------------------------------------------------------- /old/test/test_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/test_1.js -------------------------------------------------------------------------------- /old/test/traceur.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/traceur.html -------------------------------------------------------------------------------- /old/test/traceur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/traceur.js -------------------------------------------------------------------------------- /old/test/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/old/test/web.config -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/package.json -------------------------------------------------------------------------------- /source/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/ReadMe.md -------------------------------------------------------------------------------- /source/map/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/ReadMe.md -------------------------------------------------------------------------------- /source/map/accessor-bracket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/accessor-bracket.js -------------------------------------------------------------------------------- /source/map/accessor-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/accessor-dot.js -------------------------------------------------------------------------------- /source/map/argument-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/argument-default.js -------------------------------------------------------------------------------- /source/map/argument-destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/argument-destructuring.js -------------------------------------------------------------------------------- /source/map/argument-rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/argument-rest.js -------------------------------------------------------------------------------- /source/map/arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/arguments.js -------------------------------------------------------------------------------- /source/map/array-spread-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/array-spread-item.js -------------------------------------------------------------------------------- /source/map/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/array.js -------------------------------------------------------------------------------- /source/map/arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/arrow.js -------------------------------------------------------------------------------- /source/map/basic-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/basic-tag.js -------------------------------------------------------------------------------- /source/map/binary-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/binary-all.js -------------------------------------------------------------------------------- /source/map/binary-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/binary-base.js -------------------------------------------------------------------------------- /source/map/binary-extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/binary-extension.js -------------------------------------------------------------------------------- /source/map/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/block.js -------------------------------------------------------------------------------- /source/map/brace-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/brace-body.js -------------------------------------------------------------------------------- /source/map/break-continue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/break-continue.js -------------------------------------------------------------------------------- /source/map/call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/call.js -------------------------------------------------------------------------------- /source/map/case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/case.js -------------------------------------------------------------------------------- /source/map/class-accessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-accessor.js -------------------------------------------------------------------------------- /source/map/class-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-body.js -------------------------------------------------------------------------------- /source/map/class-constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-constructor.js -------------------------------------------------------------------------------- /source/map/class-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-declaration.js -------------------------------------------------------------------------------- /source/map/class-extends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-extends.js -------------------------------------------------------------------------------- /source/map/class-helper-expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-helper-expression.js -------------------------------------------------------------------------------- /source/map/class-property-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-property-initializer.js -------------------------------------------------------------------------------- /source/map/class-property-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class-property-name.js -------------------------------------------------------------------------------- /source/map/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/class.js -------------------------------------------------------------------------------- /source/map/comma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/comma.js -------------------------------------------------------------------------------- /source/map/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/comment.js -------------------------------------------------------------------------------- /source/map/common-expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/common-expression.js -------------------------------------------------------------------------------- /source/map/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/const.js -------------------------------------------------------------------------------- /source/map/declaration-array-object-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-array-object-item.js -------------------------------------------------------------------------------- /source/map/declaration-array-rest-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-array-rest-item.js -------------------------------------------------------------------------------- /source/map/declaration-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-array.js -------------------------------------------------------------------------------- /source/map/declaration-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-object.js -------------------------------------------------------------------------------- /source/map/declaration-property-name-separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-property-name-separator.js -------------------------------------------------------------------------------- /source/map/declaration-property-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-property-name.js -------------------------------------------------------------------------------- /source/map/declaration-property-rest-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-property-rest-item.js -------------------------------------------------------------------------------- /source/map/declaration-property-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-property-value.js -------------------------------------------------------------------------------- /source/map/declaration-rest-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/declaration-rest-item.js -------------------------------------------------------------------------------- /source/map/destructuring-assginment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/destructuring-assginment.js -------------------------------------------------------------------------------- /source/map/destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/destructuring.js -------------------------------------------------------------------------------- /source/map/do-while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/do-while.js -------------------------------------------------------------------------------- /source/map/ecmaScript-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/ecmaScript-helper.js -------------------------------------------------------------------------------- /source/map/ecmaScript-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/ecmaScript-parser.js -------------------------------------------------------------------------------- /source/map/ecmaScript-statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/ecmaScript-statement.js -------------------------------------------------------------------------------- /source/map/ecmaScript-statements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/ecmaScript-statements.js -------------------------------------------------------------------------------- /source/map/ecmaScript-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/ecmaScript-tags.js -------------------------------------------------------------------------------- /source/map/exponentiation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/exponentiation.js -------------------------------------------------------------------------------- /source/map/export-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/export-all.js -------------------------------------------------------------------------------- /source/map/export-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/export-default.js -------------------------------------------------------------------------------- /source/map/export-multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/export-multiple.js -------------------------------------------------------------------------------- /source/map/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/export.js -------------------------------------------------------------------------------- /source/map/file-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/file-footer.js -------------------------------------------------------------------------------- /source/map/file-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/file-header.js -------------------------------------------------------------------------------- /source/map/file-position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/file-position.js -------------------------------------------------------------------------------- /source/map/for-condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/for-condition.js -------------------------------------------------------------------------------- /source/map/for-iterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/for-iterator.js -------------------------------------------------------------------------------- /source/map/for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/for.js -------------------------------------------------------------------------------- /source/map/function-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/function-body.js -------------------------------------------------------------------------------- /source/map/function-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/function-declaration.js -------------------------------------------------------------------------------- /source/map/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/function.js -------------------------------------------------------------------------------- /source/map/grouping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/grouping.js -------------------------------------------------------------------------------- /source/map/identifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/identifier.js -------------------------------------------------------------------------------- /source/map/if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/if.js -------------------------------------------------------------------------------- /source/map/import-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/import-all.js -------------------------------------------------------------------------------- /source/map/import-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/import-default.js -------------------------------------------------------------------------------- /source/map/import-multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/import-multiple.js -------------------------------------------------------------------------------- /source/map/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/import.js -------------------------------------------------------------------------------- /source/map/jsx-attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/jsx-attribute.js -------------------------------------------------------------------------------- /source/map/jsx-children.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/jsx-children.js -------------------------------------------------------------------------------- /source/map/jsx-placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/jsx-placeholder.js -------------------------------------------------------------------------------- /source/map/jsx-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/jsx-type.js -------------------------------------------------------------------------------- /source/map/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/jsx.js -------------------------------------------------------------------------------- /source/map/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/label.js -------------------------------------------------------------------------------- /source/map/let.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/let.js -------------------------------------------------------------------------------- /source/map/line-terminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/line-terminator.js -------------------------------------------------------------------------------- /source/map/literal-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/literal-base.js -------------------------------------------------------------------------------- /source/map/literal-extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/literal-extension.js -------------------------------------------------------------------------------- /source/map/mathematical-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/mathematical-number.js -------------------------------------------------------------------------------- /source/map/nested-declaration-array-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/nested-declaration-array-item.js -------------------------------------------------------------------------------- /source/map/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/object.js -------------------------------------------------------------------------------- /source/map/property-accessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property-accessor.js -------------------------------------------------------------------------------- /source/map/property-computed-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property-computed-name.js -------------------------------------------------------------------------------- /source/map/property-identifier-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property-identifier-name.js -------------------------------------------------------------------------------- /source/map/property-initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property-initializer.js -------------------------------------------------------------------------------- /source/map/property-iteral-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property-iteral-name.js -------------------------------------------------------------------------------- /source/map/property-shorthand-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property-shorthand-method.js -------------------------------------------------------------------------------- /source/map/property-spread-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property-spread-item.js -------------------------------------------------------------------------------- /source/map/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/property.js -------------------------------------------------------------------------------- /source/map/question-assignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/question-assignment.js -------------------------------------------------------------------------------- /source/map/return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/return.js -------------------------------------------------------------------------------- /source/map/semicolon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/semicolon.js -------------------------------------------------------------------------------- /source/map/spread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/spread.js -------------------------------------------------------------------------------- /source/map/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/static.js -------------------------------------------------------------------------------- /source/map/super-call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/super-call.js -------------------------------------------------------------------------------- /source/map/super-property-assignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/super-property-assignment.js -------------------------------------------------------------------------------- /source/map/super-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/super-property.js -------------------------------------------------------------------------------- /source/map/super.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/super.js -------------------------------------------------------------------------------- /source/map/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/switch.js -------------------------------------------------------------------------------- /source/map/tags-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/tags-base.js -------------------------------------------------------------------------------- /source/map/tags-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/tags-helper.js -------------------------------------------------------------------------------- /source/map/tags-others.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/tags-others.js -------------------------------------------------------------------------------- /source/map/target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/target.js -------------------------------------------------------------------------------- /source/map/template-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/template-content.js -------------------------------------------------------------------------------- /source/map/template-parameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/template-parameter.js -------------------------------------------------------------------------------- /source/map/template-placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/template-placeholder.js -------------------------------------------------------------------------------- /source/map/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/template.js -------------------------------------------------------------------------------- /source/map/terminated-brach-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/terminated-brach-flow.js -------------------------------------------------------------------------------- /source/map/terminated-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/terminated-flow.js -------------------------------------------------------------------------------- /source/map/ternary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/ternary.js -------------------------------------------------------------------------------- /source/map/throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/throw.js -------------------------------------------------------------------------------- /source/map/try-catch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/try-catch.js -------------------------------------------------------------------------------- /source/map/try-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/try-function.js -------------------------------------------------------------------------------- /source/map/unary-assginment-extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/unary-assginment-extension.js -------------------------------------------------------------------------------- /source/map/unary-assginment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/unary-assginment.js -------------------------------------------------------------------------------- /source/map/unary-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/unary-base.js -------------------------------------------------------------------------------- /source/map/unary-exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/unary-exec.js -------------------------------------------------------------------------------- /source/map/unary-non-assginment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/unary-non-assginment.js -------------------------------------------------------------------------------- /source/map/var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/var.js -------------------------------------------------------------------------------- /source/map/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/variable.js -------------------------------------------------------------------------------- /source/map/while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/while.js -------------------------------------------------------------------------------- /source/map/yield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/map/yield.js -------------------------------------------------------------------------------- /source/rex-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/rex-basic.js -------------------------------------------------------------------------------- /source/rex-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/rex-browser.js -------------------------------------------------------------------------------- /source/rex-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/rex-core.js -------------------------------------------------------------------------------- /source/rex-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/rex-es.js -------------------------------------------------------------------------------- /source/rex-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/rex-helper.js -------------------------------------------------------------------------------- /source/rex-syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/source/rex-syntax.js -------------------------------------------------------------------------------- /test/ReadMe.md: -------------------------------------------------------------------------------- 1 | ### 测试文件 2 | 3 | 启用环境:[详见](../dev/ReadMe.md)。 -------------------------------------------------------------------------------- /test/array/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/array/index.js -------------------------------------------------------------------------------- /test/array/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/array/source.js -------------------------------------------------------------------------------- /test/arrow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/arrow/index.js -------------------------------------------------------------------------------- /test/arrow/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/arrow/source.js -------------------------------------------------------------------------------- /test/binary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/binary/index.js -------------------------------------------------------------------------------- /test/binary/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/binary/source.js -------------------------------------------------------------------------------- /test/block/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/block/index.js -------------------------------------------------------------------------------- /test/block/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/block/source.js -------------------------------------------------------------------------------- /test/bracketAccessor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/bracketAccessor/index.js -------------------------------------------------------------------------------- /test/bracketAccessor/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/bracketAccessor/source.js -------------------------------------------------------------------------------- /test/break/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/break/index.js -------------------------------------------------------------------------------- /test/call/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/call/index.js -------------------------------------------------------------------------------- /test/call/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/call/source.js -------------------------------------------------------------------------------- /test/class/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/class/index.js -------------------------------------------------------------------------------- /test/class/source1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/class/source1.js -------------------------------------------------------------------------------- /test/class/source2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/class/source2.js -------------------------------------------------------------------------------- /test/class/source3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/class/source3.js -------------------------------------------------------------------------------- /test/comma/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/comma/index.js -------------------------------------------------------------------------------- /test/comma/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/comma/source.js -------------------------------------------------------------------------------- /test/comment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/comment/index.js -------------------------------------------------------------------------------- /test/comment/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/comment/source.js -------------------------------------------------------------------------------- /test/const/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/const/index.js -------------------------------------------------------------------------------- /test/continue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/continue/index.js -------------------------------------------------------------------------------- /test/destructuring/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/destructuring/index.js -------------------------------------------------------------------------------- /test/destructuring/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/destructuring/source.js -------------------------------------------------------------------------------- /test/do-while/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/do-while/index.js -------------------------------------------------------------------------------- /test/do-while/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/do-while/source.js -------------------------------------------------------------------------------- /test/dot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/dot/index.js -------------------------------------------------------------------------------- /test/for/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/for/index.js -------------------------------------------------------------------------------- /test/for/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/for/source.js -------------------------------------------------------------------------------- /test/function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/function/index.js -------------------------------------------------------------------------------- /test/function/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/function/source.js -------------------------------------------------------------------------------- /test/generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/generator/index.js -------------------------------------------------------------------------------- /test/generator/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/generator/source.js -------------------------------------------------------------------------------- /test/grouping/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/grouping/index.js -------------------------------------------------------------------------------- /test/grouping/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/grouping/source.js -------------------------------------------------------------------------------- /test/if/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/if/index.js -------------------------------------------------------------------------------- /test/if/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/if/source.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/index.html -------------------------------------------------------------------------------- /test/jsx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/jsx/index.js -------------------------------------------------------------------------------- /test/jsx/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/jsx/source.js -------------------------------------------------------------------------------- /test/label/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/label/index.js -------------------------------------------------------------------------------- /test/label/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/label/source.js -------------------------------------------------------------------------------- /test/let/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/let/index.js -------------------------------------------------------------------------------- /test/module/a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/module/a.css -------------------------------------------------------------------------------- /test/module/a.js: -------------------------------------------------------------------------------- 1 | export let i = 1, k = 2; -------------------------------------------------------------------------------- /test/module/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/module/a.json -------------------------------------------------------------------------------- /test/module/a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/module/a.xml -------------------------------------------------------------------------------- /test/module/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/module/export.js -------------------------------------------------------------------------------- /test/module/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/module/import.js -------------------------------------------------------------------------------- /test/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/module/index.js -------------------------------------------------------------------------------- /test/module/source.js: -------------------------------------------------------------------------------- 1 | // 这里使用根目录路径测试 2 | new Rexjs.Module("/test/module/import.js", null, true); -------------------------------------------------------------------------------- /test/number/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/number/index.js -------------------------------------------------------------------------------- /test/object/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/object/index.js -------------------------------------------------------------------------------- /test/object/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/object/source.js -------------------------------------------------------------------------------- /test/question-assignment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/question-assignment/index.js -------------------------------------------------------------------------------- /test/question-assignment/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/question-assignment/source.js -------------------------------------------------------------------------------- /test/regexp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/regexp/index.js -------------------------------------------------------------------------------- /test/return/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/return/index.js -------------------------------------------------------------------------------- /test/return/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/return/source.js -------------------------------------------------------------------------------- /test/rex-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/rex-test.js -------------------------------------------------------------------------------- /test/semicolon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/semicolon/index.js -------------------------------------------------------------------------------- /test/spread/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/spread/index.js -------------------------------------------------------------------------------- /test/spread/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/spread/source.js -------------------------------------------------------------------------------- /test/string/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/string/index.js -------------------------------------------------------------------------------- /test/string/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/string/source.js -------------------------------------------------------------------------------- /test/super/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/super/index.js -------------------------------------------------------------------------------- /test/super/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/super/source.js -------------------------------------------------------------------------------- /test/switch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/switch/index.js -------------------------------------------------------------------------------- /test/switch/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/switch/source.js -------------------------------------------------------------------------------- /test/target/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/target/index.js -------------------------------------------------------------------------------- /test/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/template/index.js -------------------------------------------------------------------------------- /test/template/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/template/source.js -------------------------------------------------------------------------------- /test/ternary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/ternary/index.js -------------------------------------------------------------------------------- /test/ternary/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/ternary/source.js -------------------------------------------------------------------------------- /test/throw/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/throw/index.js -------------------------------------------------------------------------------- /test/try-catch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/try-catch/index.js -------------------------------------------------------------------------------- /test/try-catch/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/try-catch/source.js -------------------------------------------------------------------------------- /test/try-function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/try-function/index.js -------------------------------------------------------------------------------- /test/try-function/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/try-function/source.js -------------------------------------------------------------------------------- /test/unary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/unary/index.js -------------------------------------------------------------------------------- /test/unary/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/unary/source.js -------------------------------------------------------------------------------- /test/var/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/var/index.js -------------------------------------------------------------------------------- /test/var/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/var/source.js -------------------------------------------------------------------------------- /test/variable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/variable/index.js -------------------------------------------------------------------------------- /test/while/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/while/index.js -------------------------------------------------------------------------------- /test/while/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/china-liji/Rexjs/HEAD/test/while/source.js --------------------------------------------------------------------------------