├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── compiler-devel.README.md ├── devel ├── generated-js │ ├── prev │ │ ├── liteCompiler-v0.1 │ │ │ ├── ASTBase.js │ │ │ ├── Compiler.js │ │ │ ├── Grammar.js │ │ │ ├── Lexer.js │ │ │ ├── Producer_js.js │ │ │ ├── README.js │ │ │ ├── TypeCheck.js │ │ │ ├── browser-environment-support.js │ │ │ ├── node-environment-support.js │ │ │ ├── string-shims.js │ │ │ └── util.js │ │ ├── liteCompiler-v0.2 │ │ │ ├── ASTBase.js │ │ │ ├── Compiler.js │ │ │ ├── Environment.js │ │ │ ├── Grammar.js │ │ │ ├── Lexer.js │ │ │ ├── NameDeclaration.js │ │ │ ├── NameValidate.js │ │ │ ├── Producer_js.js │ │ │ ├── Validate.js │ │ │ ├── declares │ │ │ │ ├── ASTBase.json │ │ │ │ ├── Compiler.json │ │ │ │ ├── Environment.json │ │ │ │ ├── Grammar.json │ │ │ │ ├── Lexer.json │ │ │ │ ├── NameDeclaration.json │ │ │ │ ├── NameValidate.json │ │ │ │ ├── Producer_js.json │ │ │ │ └── Validate.json │ │ │ ├── node-environment-support.js │ │ │ ├── string-shims.js │ │ │ └── util.js │ │ ├── liteCompiler-v0.3 │ │ │ ├── Compiler.js │ │ │ └── node_modules │ │ │ │ ├── ASTBase.js │ │ │ │ ├── Environment.js │ │ │ │ ├── Grammar.js │ │ │ │ ├── Lexer.js │ │ │ │ ├── NameDeclaration.js │ │ │ │ ├── Producer_js.js │ │ │ │ ├── Validate.js │ │ │ │ ├── log.js │ │ │ │ ├── mkPath.js │ │ │ │ ├── node-environment-support.js │ │ │ │ ├── sourceMap.js │ │ │ │ └── string-shims.js │ │ ├── liteCompiler-v0.4 │ │ │ ├── ASTBase.js │ │ │ ├── Compiler.js │ │ │ ├── Environment.js │ │ │ ├── Grammar.js │ │ │ ├── Lexer.js │ │ │ ├── NameDeclaration.js │ │ │ ├── Producer_js.js │ │ │ ├── SourceMap.js │ │ │ ├── Validate.js │ │ │ ├── log.js │ │ │ ├── mkPath.js │ │ │ ├── node-environment-support.js │ │ │ └── string-shims.js │ │ └── liteCompiler-v0.5 │ │ │ ├── ASTBase.js │ │ │ ├── Compiler.js │ │ │ ├── Environment.js │ │ │ ├── Grammar.js │ │ │ ├── Lexer.js │ │ │ ├── NameDeclaration.js │ │ │ ├── Producer_js.js │ │ │ ├── SourceMap.js │ │ │ ├── Validate.js │ │ │ ├── log.js │ │ │ ├── mkPath.js │ │ │ └── string-shims.js │ ├── v0.6 │ │ └── lite-to-js │ │ │ ├── ASTBase.js │ │ │ ├── Args.js │ │ │ ├── Compiler.js │ │ │ ├── Environment.js │ │ │ ├── Grammar.js │ │ │ ├── Lexer.js │ │ │ ├── NameDeclaration.js │ │ │ ├── Producer_C.js │ │ │ ├── Producer_js.js │ │ │ ├── SourceMap.js │ │ │ ├── Validate.js │ │ │ ├── lite-cli.js │ │ │ ├── log.js │ │ │ ├── mkPath.js │ │ │ └── string-shims.js │ ├── v0.7 │ │ └── lite-to-js │ │ │ ├── ASTBase.js │ │ │ ├── Args.js │ │ │ ├── Compiler.js │ │ │ ├── Environment.js │ │ │ ├── Grammar.js │ │ │ ├── Lexer.js │ │ │ ├── NameDeclaration.js │ │ │ ├── Producer_js.js │ │ │ ├── Project.js │ │ │ ├── SourceMap.js │ │ │ ├── StringShims.js │ │ │ ├── Validate.js │ │ │ ├── lite-cli.js │ │ │ ├── log.js │ │ │ └── mkPath.js │ └── v0.8 │ │ ├── lite-to-c │ │ ├── ASTBase.js │ │ ├── Compiler.js │ │ ├── Grammar.js │ │ ├── Names.js │ │ ├── Parser.js │ │ ├── Producer_c.js │ │ ├── Producer_js.js │ │ ├── Project.js │ │ ├── Validate.js │ │ ├── interfaces │ │ │ ├── C_standalone │ │ │ │ ├── build.sh │ │ │ │ ├── debug.sh │ │ │ │ ├── fs.interface.md │ │ │ │ ├── path-old.lite.md │ │ │ │ └── path.lite.md │ │ │ ├── GlobalScopeBROWSER.interface.md │ │ │ ├── GlobalScopeC.interface.md │ │ │ ├── GlobalScopeJS.interface.md │ │ │ ├── GlobalScopeNODE.interface.md │ │ │ ├── Iterable.lite.md │ │ │ ├── LiteCore.js │ │ │ ├── LiteCore.lite.md │ │ │ ├── Map.js │ │ │ ├── Map.lite.md │ │ │ ├── PMREX.js │ │ │ ├── PMREX.lite.md │ │ │ ├── dns.interface.md │ │ │ ├── fs.interface.md │ │ │ ├── nicegen.lite.md │ │ │ ├── path.interface.md │ │ │ ├── shims.js │ │ │ └── shims.lite.md │ │ ├── js_lite.js │ │ └── lib │ │ │ ├── ControlledError.js │ │ │ ├── Environment.js │ │ │ ├── GeneralOptions.js │ │ │ ├── OptionsParser.js │ │ │ ├── UniqueID.js │ │ │ ├── color.js │ │ │ ├── logger.js │ │ │ └── mkPath.js │ │ └── lite-to-js │ │ ├── ASTBase.js │ │ ├── Compiler.js │ │ ├── Grammar.js │ │ ├── Names.js │ │ ├── Parser.js │ │ ├── Producer_js.js │ │ ├── Project.js │ │ ├── Validate.js │ │ ├── interfaces │ │ ├── C_standalone │ │ │ ├── build.sh │ │ │ ├── debug.sh │ │ │ ├── fs.interface.md │ │ │ ├── path-old.lite.md │ │ │ └── path.lite.md │ │ ├── GlobalScopeBROWSER.interface.md │ │ ├── GlobalScopeC.interface.md │ │ ├── GlobalScopeJS.interface.md │ │ ├── GlobalScopeNODE.interface.md │ │ ├── Iterable.lite.md │ │ ├── LiteC.js │ │ ├── LiteCore.js │ │ ├── LiteCore.lite.md │ │ ├── Map.js │ │ ├── Map.lite.md │ │ ├── PMREX.js │ │ ├── PMREX.lite.md │ │ ├── dns.interface.md │ │ ├── fs.interface.md │ │ ├── nicegen.lite.md │ │ ├── path.interface.md │ │ ├── shims.js │ │ └── shims.lite.md │ │ ├── js_lite.js │ │ └── lib │ │ ├── ControlledError.js │ │ ├── Environment.js │ │ ├── GeneralOptions.js │ │ ├── OptionsParser.js │ │ ├── SourceMap.js │ │ ├── UniqueID.js │ │ ├── color.js │ │ ├── lite │ │ ├── logger.js │ │ └── mkPath.js ├── litec │ ├── LiteCore implementation details.md │ ├── NOTES.md │ ├── README.md │ ├── core │ │ ├── .dep.inc │ │ ├── ImmutArray.c │ │ ├── LiteC-core.c │ │ ├── LiteC-core.h │ │ ├── Makefile │ │ ├── PMREX-native.c │ │ ├── PMREX-native.h │ │ ├── any.c │ │ ├── any.h │ │ ├── exceptions.c │ │ ├── exceptions.h │ │ ├── fs-native.c │ │ ├── fs-native.h │ │ ├── fs.h │ │ ├── keytree.c │ │ ├── simplemalloc.c │ │ ├── simplemalloc.h │ │ ├── tests │ │ │ └── String_charCodeAt.c │ │ ├── utf8strings.c │ │ ├── utf8strings.h │ │ ├── util.c │ │ └── util.h │ ├── include │ │ ├── gc │ │ │ ├── gc.h │ │ │ ├── gc_allocator.h │ │ │ ├── gc_amiga_redirects.h │ │ │ ├── gc_backptr.h │ │ │ ├── gc_config_macros.h │ │ │ ├── gc_cpp.h │ │ │ ├── gc_gcj.h │ │ │ ├── gc_inline.h │ │ │ ├── gc_mark.h │ │ │ ├── gc_pthread_redirects.h │ │ │ ├── gc_tiny_fl.h │ │ │ ├── gc_typed.h │ │ │ ├── gc_version.h │ │ │ ├── leak_detector.h │ │ │ ├── new_gc_alloc.h │ │ │ └── weakpointer.h │ │ └── libgc.so │ ├── litec-to-c │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── build-lite.sh │ │ ├── compare │ │ ├── interfaces │ │ │ ├── C_standalone │ │ │ │ ├── build.sh │ │ │ │ ├── debug.sh │ │ │ │ ├── fs.interface.md │ │ │ │ ├── path-old.lite.md │ │ │ │ └── path.lite.md │ │ │ ├── GlobalScopeC.interface.md │ │ │ ├── GlobalScopeJS.interface.md │ │ │ ├── GlobalScopeNODE.interface.md │ │ │ ├── Iterable.lite.md │ │ │ ├── LiteCore.lite.md │ │ │ ├── Map.lite.md │ │ │ ├── PMREX.lite.md │ │ │ ├── fs.interface.md │ │ │ ├── nicegen.lite.md │ │ │ ├── path.interface.md │ │ │ └── shims.lite.md │ │ ├── lib │ │ │ └── GlobalScopeC.interface.md │ │ ├── nbproject │ │ │ ├── Makefile-Debug.mk │ │ │ ├── Makefile-Release.mk │ │ │ ├── Makefile-impl.mk │ │ │ ├── Makefile-variables.mk │ │ │ ├── Package-Debug.bash │ │ │ ├── Package-Release.bash │ │ │ ├── configurations.xml │ │ │ ├── private │ │ │ │ ├── Makefile-variables.mk │ │ │ │ ├── configurations.xml │ │ │ │ ├── launcher.properties │ │ │ │ └── private.xml │ │ │ └── project.xml │ │ ├── perf-release │ │ ├── run-debug │ │ ├── run-release │ │ ├── test.lite.md │ │ └── tobin │ └── litec-to-js │ │ ├── .dep.inc │ │ ├── Makefile │ │ ├── build-lite.sh │ │ ├── compare │ │ ├── core │ │ ├── interfaces │ │ ├── GlobalScopeBROWSER.interface.md │ │ ├── GlobalScopeC.interface.md │ │ ├── GlobalScopeJS.interface.md │ │ └── GlobalScopeNODE.interface.md │ │ ├── lib │ │ ├── GlobalScopeC.interface.md │ │ ├── GlobalScopeJS.interface.md │ │ └── GlobalScopeNODE.interface.md │ │ ├── nbproject │ │ ├── Makefile-Debug.mk │ │ ├── Makefile-Release.mk │ │ ├── Makefile-impl.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-Debug.bash │ │ ├── Package-Release.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── Makefile-variables.mk │ │ │ ├── configurations.xml │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ │ ├── perf-release │ │ ├── run-debug │ │ ├── run-release │ │ ├── run.sh │ │ ├── test.lite.md │ │ └── tobin ├── source │ ├── prev │ │ ├── source-v0.0-js │ │ │ ├── README.md │ │ │ ├── ast.js │ │ │ ├── compileFiles.js │ │ │ ├── compiler.js │ │ │ ├── generator.js │ │ │ ├── grammar.js │ │ │ ├── interactive.js │ │ │ ├── lexer.js │ │ │ ├── literate.js │ │ │ ├── parser.js │ │ │ └── sugar.js │ │ ├── source-v0.1 │ │ │ ├── ASTBase.lite │ │ │ ├── Compiler.lite │ │ │ ├── Grammar.lite │ │ │ ├── Lexer.lite │ │ │ ├── Producer_js.lite │ │ │ ├── README.md │ │ │ ├── TypeCheck.lite │ │ │ ├── browser-environment-support.js │ │ │ ├── node-environment-support.js │ │ │ ├── string-shims.js │ │ │ └── util.js │ │ ├── source-v0.2 │ │ │ ├── ASTBase.lite.md │ │ │ ├── Compiler.lite │ │ │ ├── Environment.lite.md │ │ │ ├── Grammar.lite.md │ │ │ ├── Lexer.lite.md │ │ │ ├── NOTES.md │ │ │ ├── NameDeclaration.lite.md │ │ │ ├── Producer_js.lite.md │ │ │ ├── README.md │ │ │ ├── Validate.lite.md │ │ │ ├── browser-environment-support.js │ │ │ ├── node-environment-support.js │ │ │ ├── string-shims.js │ │ │ └── util.js │ │ ├── source-v0.3 │ │ │ ├── Compiler.lite.md │ │ │ ├── NOTES.md │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ └── node_modules │ │ │ │ ├── ASTBase.lite.md │ │ │ │ ├── Environment.lite.md │ │ │ │ ├── Grammar.lite.md │ │ │ │ ├── Lexer.lite.md │ │ │ │ ├── NameDeclaration.lite.md │ │ │ │ ├── Producer_js.lite.md │ │ │ │ ├── Validate.lite.md │ │ │ │ ├── build.sh │ │ │ │ ├── log.lite.md │ │ │ │ ├── mkPath.lite.md │ │ │ │ ├── node-environment-support.lite.md │ │ │ │ ├── sourceMap.js │ │ │ │ └── string-shims.js │ │ ├── source-v0.4 │ │ │ ├── ASTBase.lite.md │ │ │ ├── Compiler.lite.md │ │ │ ├── Environment.lite.md │ │ │ ├── Grammar.lite.md │ │ │ ├── Lexer.lite.md │ │ │ ├── NOTES.md │ │ │ ├── NameDeclaration.lite.md │ │ │ ├── Producer_js.lite.md │ │ │ ├── README.md │ │ │ ├── Validate.lite.md │ │ │ ├── browser │ │ │ │ ├── build.sh │ │ │ │ ├── fs.js │ │ │ │ ├── fs.md │ │ │ │ ├── path.js │ │ │ │ └── path.md │ │ │ ├── build.sh │ │ │ ├── log.lite.md │ │ │ ├── mkPath.lite.md │ │ │ ├── string-shims.interface.md │ │ │ └── string-shims.js │ │ ├── source-v0.5 │ │ │ ├── ASTBase.lite.md │ │ │ ├── Args.lite.md │ │ │ ├── Compiler.lite.md │ │ │ ├── Environment.lite.md │ │ │ ├── Grammar.lite.md │ │ │ ├── Lexer.lite.md │ │ │ ├── NOTES.md │ │ │ ├── NameDeclaration.lite.md │ │ │ ├── Producer_js.lite.md │ │ │ ├── README.md │ │ │ ├── SourceMap.lite.md │ │ │ ├── Validate.lite.md │ │ │ ├── browser │ │ │ │ ├── build.sh │ │ │ │ ├── fs.js │ │ │ │ ├── fs.md │ │ │ │ ├── path.js │ │ │ │ └── path.md │ │ │ ├── build.sh │ │ │ ├── lite-cli.lite.md │ │ │ ├── log.lite.md │ │ │ ├── mkPath.lite.md │ │ │ ├── string-shims.interface.md │ │ │ └── string-shims.js │ │ └── source-v0.6 │ │ │ ├── ASTBase.lite.md │ │ │ ├── Args.lite.md │ │ │ ├── Compiler.lite.md │ │ │ ├── Environment.lite.md │ │ │ ├── Grammar.lite.md │ │ │ ├── Lexer.lite.md │ │ │ ├── NOTES.md │ │ │ ├── NameDeclaration.lite.md │ │ │ ├── Producer_js.lite.md │ │ │ ├── README.md │ │ │ ├── SourceMap.lite.md │ │ │ ├── Validate.lite.md │ │ │ ├── browser │ │ │ ├── build.sh │ │ │ ├── fs.js │ │ │ ├── fs.md │ │ │ ├── path.js │ │ │ └── path.md │ │ │ ├── build-PRODC.sh │ │ │ ├── build-cli.sh │ │ │ ├── build.sh │ │ │ ├── lite-cli.lite.md │ │ │ ├── log.lite.md │ │ │ ├── mkPath.lite.md │ │ │ └── string-shims.md │ ├── v0.7 │ │ ├── ASTBase.lite.md │ │ ├── Args.lite.md │ │ ├── Compiler.lite.md │ │ ├── Environment.lite.md │ │ ├── Grammar.lite.md │ │ ├── Lexer.lite.md │ │ ├── NOTES.md │ │ ├── NameDeclaration.lite.md │ │ ├── Producer_js.lite.md │ │ ├── Project.lite.md │ │ ├── README.md │ │ ├── SourceMap.lite.md │ │ ├── StringShims.md │ │ ├── Validate.lite.md │ │ ├── bld-c-lite-to-js.sh │ │ ├── browser │ │ │ ├── build.sh │ │ │ ├── fs.js │ │ │ ├── fs.md │ │ │ ├── path.js │ │ │ └── path.md │ │ ├── build-PRODC.sh │ │ ├── build-cli.sh │ │ ├── build-lite.sh │ │ ├── c_lite.lite.md │ │ ├── lite-cli.lite.md │ │ ├── log.lite.md │ │ ├── mkPath.lite.md │ │ └── package.json │ └── v0.8 │ │ ├── ASTBase.lite.md │ │ ├── Compiler.lite.md │ │ ├── Grammar.lite.md │ │ ├── Names.lite.md │ │ ├── Parser.lite.md │ │ ├── Producer_c.lite.md │ │ ├── Producer_js.lite.md │ │ ├── Project.lite.md │ │ ├── README.md │ │ ├── Validate.lite.md │ │ ├── bld │ │ ├── bld-c-ls-to-c.sh │ │ ├── bld-c-ls-to-js.sh │ │ ├── bld-js-ls-to-c.sh │ │ ├── bld-js-ls-to-js.sh │ │ ├── build-lite.sh │ │ ├── use-c-ls-to-js.sh │ │ └── use-v07.sh │ │ ├── browser │ │ ├── build.sh │ │ ├── fs.js │ │ ├── fs.md │ │ ├── path.js │ │ └── path.md │ │ ├── build-lite.sh │ │ ├── c_lite.lite.md │ │ ├── interfaces │ │ ├── C_standalone │ │ │ ├── build.sh │ │ │ ├── debug.sh │ │ │ ├── fs.interface.md │ │ │ └── path.lite.md │ │ ├── GlobalScopeBROWSER.interface.md │ │ ├── GlobalScopeC.interface.md │ │ ├── GlobalScopeJS.interface.md │ │ ├── GlobalScopeNODE.interface.md │ │ ├── Iterable.lite.md │ │ ├── LiteCore.lite.md │ │ ├── Map.lite.md │ │ ├── PMREX.lite.md │ │ ├── dns.interface.md │ │ ├── fs.interface.md │ │ ├── nicegen.lite.md │ │ ├── path.interface.md │ │ └── shims.lite.md │ │ ├── js_lite.lite.md │ │ ├── lib │ │ ├── ControlledError.md │ │ ├── Environment.lite.md │ │ ├── GeneralOptions.lite.md │ │ ├── OptionsParser.lite.md │ │ ├── SourceMap.lite.md │ │ ├── UniqueID.lite.md │ │ ├── color.lite.md │ │ ├── logger.lite.md │ │ └── mkPath.lite.md │ │ ├── lite │ │ ├── notes │ │ ├── NOTES iterators.md │ │ ├── NOTES javascript or operator.md │ │ ├── NOTES literal objects.md │ │ ├── NOTES named params analysis.md │ │ └── NOTES.md │ │ ├── package.json │ │ └── utility │ │ ├── build-lite.sh │ │ ├── mkInterface.js │ │ ├── mkInterface.js.map │ │ ├── mkInterface.lite.md │ │ ├── process.temp │ │ └── temp ├── temp.js ├── test.js └── util │ ├── build-lite.sh │ ├── compile-lite-cli │ ├── copy-to-main │ ├── findfiles.js │ ├── fsUtil.js │ ├── generated │ └── interfaces │ │ └── nicegen.js │ ├── liteVersion.js │ ├── npm-debug.log │ ├── old │ ├── lite-js-BAK │ └── update-package-json.md │ ├── release │ ├── release-7 │ ├── release-debug.sh │ ├── strip-comments.js │ ├── test.js │ ├── tests │ ├── LiteC-core │ │ └── Test-CharCodeAt.lite.md │ ├── allVersions │ │ ├── Assignment.lite.md │ │ ├── Boolean.lite.md │ │ ├── CaseWhen.lite.md │ │ ├── Default.lite.md │ │ ├── DoWhileUntil.lite.md │ │ ├── IfStatements.lite.md │ │ ├── Shims.lite.md │ │ ├── StringInterpolation.lite.md │ │ ├── Strings.lite.md │ │ ├── Ternary.lite.md │ │ ├── TryCatch.lite.md │ │ └── build-lite.sh │ ├── build-lite.sh │ ├── extra-check-version.lite.md │ ├── extra-nice-function.lite.md │ ├── findfiles.lite.md │ ├── generated │ │ └── js │ │ │ ├── extra-nice-function.js │ │ │ └── interfaces │ │ │ └── nicegen.js │ ├── prev │ │ ├── test-v0.1 │ │ │ ├── Assignment.lite │ │ │ ├── Boolean.lite │ │ │ ├── Classes.lite │ │ │ ├── Default.lite │ │ │ ├── DoWhileUntil.lite │ │ │ ├── Expressions.lite │ │ │ ├── ForStatement.lite │ │ │ ├── Functions.lite │ │ │ ├── IfStatements.lite │ │ │ ├── Regex.lite │ │ │ ├── StringInterpolation.lite │ │ │ ├── Strings.lite │ │ │ ├── Ternary.lite │ │ │ └── TryCatch.lite │ │ ├── test-v0.2 │ │ │ ├── Assignment.lite │ │ │ ├── Boolean.lite │ │ │ ├── Classes.lite │ │ │ ├── Classes2.lite │ │ │ ├── Compiler.Validation.lite │ │ │ ├── Default.lite │ │ │ ├── DoWhileUntil.lite │ │ │ ├── Expressions.lite │ │ │ ├── ForStatement.lite │ │ │ ├── Functions.lite │ │ │ ├── IfStatements.lite │ │ │ ├── Regex.lite │ │ │ ├── StringInterpolation.lite │ │ │ ├── Strings.lite │ │ │ ├── Ternary.lite │ │ │ └── TryCatch.lite │ │ ├── test-v0.3 │ │ │ ├── Assignment.lite │ │ │ ├── Boolean.lite │ │ │ ├── Classes-dot-this.lite │ │ │ ├── Classes.lite │ │ │ ├── Compile-If.lite │ │ │ ├── Default.lite │ │ │ ├── DoWhileUntil.lite │ │ │ ├── Expressions.lite │ │ │ ├── ForStatement-Where.lite │ │ │ ├── ForStatement.lite │ │ │ ├── Functions.lite │ │ │ ├── IfStatements.lite │ │ │ ├── StringInterpolation.lite │ │ │ ├── Strings.lite │ │ │ ├── Ternary.lite │ │ │ └── TryCatch.lite │ │ ├── test-v0.4 │ │ │ ├── Assignment.lite │ │ │ ├── Boolean.lite │ │ │ ├── CaseWhen.lite │ │ │ ├── Classes-dot-this.lite │ │ │ ├── Classes.lite │ │ │ ├── Compile-If.lite │ │ │ ├── Default.lite │ │ │ ├── DoWhileUntil.lite │ │ │ ├── Expressions.lite │ │ │ ├── ForStatement-Where.lite │ │ │ ├── ForStatement.lite │ │ │ ├── Functions.lite │ │ │ ├── IfStatements.lite │ │ │ ├── Shims.lite │ │ │ ├── StringInterpolation.lite │ │ │ ├── Strings.lite │ │ │ ├── Switch.lite │ │ │ ├── Ternary.lite │ │ │ ├── TryCatch.lite │ │ │ └── sourceMap │ │ │ │ ├── SourceMap.lite.md │ │ │ │ ├── build.sh │ │ │ │ ├── expect.lite.md │ │ │ │ └── sourceMapTest.lite.md │ │ └── test-v0.5 │ │ │ ├── Assignment.lite │ │ │ ├── Boolean.lite │ │ │ ├── CaseWhen.lite │ │ │ ├── Classes-dot-this.lite │ │ │ ├── Classes.lite │ │ │ ├── Compile-If.lite │ │ │ ├── Default.lite │ │ │ ├── DoWhileUntil.lite │ │ │ ├── Expressions.lite │ │ │ ├── ForStatement-Where.lite │ │ │ ├── ForStatement.lite │ │ │ ├── Functions.lite │ │ │ ├── IfStatements.lite │ │ │ ├── Namespace.lite │ │ │ ├── Shims.lite │ │ │ ├── StringInterpolation.lite │ │ │ ├── Strings.lite │ │ │ ├── Switch.lite │ │ │ ├── Ternary.lite │ │ │ ├── TryCatch.lite │ │ │ └── sourceMap │ │ │ ├── SourceMap.lite.md │ │ │ ├── build.sh │ │ │ ├── expect.lite.md │ │ │ └── sourceMapTest.lite.md │ ├── test-sourcemap │ │ └── smtest.js │ ├── v0.6 │ │ ├── CaseWhen.lite │ │ ├── Classes-dot-this.lite │ │ ├── Classes.lite │ │ ├── Compile-If.lite │ │ ├── build.sh │ │ ├── compiler-generate │ │ │ ├── build.sh │ │ │ ├── compiler-generate.js │ │ │ ├── compiler-generate.js.map │ │ │ └── compiler-generate.lite.md │ │ ├── event-emitter │ │ │ ├── doors.lite.md │ │ │ └── doors.lite.md.js │ │ ├── nice-function │ │ │ ├── build.sh │ │ │ ├── dns.js │ │ │ ├── dns.js.map │ │ │ ├── dns.lite.md │ │ │ ├── dns.lite.md.js │ │ │ └── sequential-ug-dir.lite.md │ │ ├── require-compiler │ │ │ ├── compileDir.js │ │ │ └── src │ │ │ │ ├── README.md │ │ │ │ └── lite-cli.lite.md │ │ ├── soft-tabs │ │ │ ├── build.sh │ │ │ ├── dns.lite.md │ │ │ ├── sequential-ug-dir.lite.md │ │ │ └── simple.lite.md │ │ └── sourceMap │ │ │ ├── SourceMap.lite.md │ │ │ ├── SourceMap.lite.md.js │ │ │ ├── build.sh │ │ │ ├── expect.lite.md │ │ │ ├── expect.lite.md.js │ │ │ ├── sourceMapTest.lite.md │ │ │ └── sourceMapTest.lite.md.js │ └── v0.7 │ │ ├── Classes-dot-this.lite │ │ ├── Classes.lite │ │ ├── Expressions.lite │ │ ├── ForStatement.lite │ │ ├── Functions.lite │ │ ├── Namespace.lite-disabled │ │ └── Switch.lite.md │ ├── use-generated │ └── wdg.lite.md ├── doc ├── README.md ├── blog-example-dns.lite.md ├── compile-from-js.md └── self-compiling-LiteScript.md ├── extras └── sublime │ ├── LiteScript │ ├── Day.tmTheme │ ├── Lite.sublime-settings │ ├── Lite.tmLanguage │ ├── LiteScript.sublime-build │ └── Night.tmTheme │ └── README.md ├── lib ├── ASTBase.js ├── Compiler.js ├── Grammar.js ├── Names.js ├── Parser.js ├── Producer_js.js ├── Project.js ├── Validate.js ├── interfaces │ ├── C_standalone │ │ ├── build.sh │ │ ├── debug.sh │ │ ├── fs.interface.md │ │ ├── path-old.lite.md │ │ └── path.lite.md │ ├── GlobalScopeBROWSER.interface.md │ ├── GlobalScopeC.interface.md │ ├── GlobalScopeJS.interface.md │ ├── GlobalScopeNODE.interface.md │ ├── Iterable.lite.md │ ├── LiteC.js │ ├── LiteCore.js │ ├── LiteCore.lite.md │ ├── Map.js │ ├── Map.lite.md │ ├── PMREX.js │ ├── PMREX.lite.md │ ├── dns.interface.md │ ├── fs.interface.md │ ├── nicegen.lite.md │ ├── path.interface.md │ ├── shims.js │ └── shims.lite.md ├── js_lite.js ├── lib │ ├── ControlledError.js │ ├── Environment.js │ ├── GeneralOptions.js │ ├── OptionsParser.js │ ├── SourceMap.js │ ├── UniqueID.js │ ├── color.js │ ├── lite │ ├── logger.js │ └── mkPath.js └── lite ├── package.json ├── reference ├── ASTBase.lite.md ├── Compiler.lite.md ├── Grammar.lite.md ├── Names.lite.md ├── Parser.lite.md ├── Producer_c.lite.md ├── Producer_js.lite.md ├── Project.lite.md ├── README.md ├── Validate.lite.md ├── c_lite.lite.md ├── interfaces │ ├── GlobalScopeBROWSER.interface.md │ ├── GlobalScopeC.interface.md │ ├── GlobalScopeJS.interface.md │ ├── GlobalScopeNODE.interface.md │ ├── Iterable.lite.md │ ├── LiteCore.lite.md │ ├── Map.lite.md │ ├── PMREX.lite.md │ ├── dns.interface.md │ ├── fs.interface.md │ ├── nicegen.lite.md │ ├── path.interface.md │ └── shims.lite.md ├── js_lite.lite.md └── lib │ ├── ControlledError.md │ ├── Environment.lite.md │ ├── GeneralOptions.lite.md │ ├── OptionsParser.lite.md │ ├── SourceMap.lite.md │ ├── UniqueID.lite.md │ ├── color.lite.md │ ├── logger.lite.md │ └── mkPath.lite.md └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/README.md -------------------------------------------------------------------------------- /compiler-devel.README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/compiler-devel.README.md -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/Lexer.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/README.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/TypeCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/TypeCheck.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/browser-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/browser-environment-support.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/node-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/node-environment-support.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/string-shims.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.1/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.1/util.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/Lexer.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/NameDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/NameDeclaration.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/NameValidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/NameValidate.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/ASTBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/ASTBase.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/Compiler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/Compiler.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/Environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/Environment.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/Grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/Grammar.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/Lexer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/Lexer.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/NameDeclaration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/NameDeclaration.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/NameValidate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/NameValidate.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/Producer_js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/Producer_js.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/declares/Validate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/declares/Validate.json -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/node-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/node-environment-support.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/string-shims.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.2/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.2/util.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/Lexer.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/NameDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/NameDeclaration.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/log.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/mkPath.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/node-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/node-environment-support.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/sourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/sourceMap.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.3/node_modules/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.3/node_modules/string-shims.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/Lexer.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/NameDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/NameDeclaration.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/SourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/SourceMap.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/log.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/mkPath.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/node-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/node-environment-support.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.4/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.4/string-shims.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/Lexer.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/NameDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/NameDeclaration.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/SourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/SourceMap.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/log.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/mkPath.js -------------------------------------------------------------------------------- /devel/generated-js/prev/liteCompiler-v0.5/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/prev/liteCompiler-v0.5/string-shims.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Args.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Lexer.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/NameDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/NameDeclaration.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Producer_C.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Producer_C.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/SourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/SourceMap.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/lite-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/lite-cli.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/log.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/mkPath.js -------------------------------------------------------------------------------- /devel/generated-js/v0.6/lite-to-js/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.6/lite-to-js/string-shims.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Args.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Lexer.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/NameDeclaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/NameDeclaration.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Project.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/SourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/SourceMap.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/StringShims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/StringShims.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/lite-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/lite-cli.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/log.js -------------------------------------------------------------------------------- /devel/generated-js/v0.7/lite-to-js/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.7/lite-to-js/mkPath.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Names.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Parser.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Producer_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Producer_c.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Project.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/build.sh -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/debug.sh -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/fs.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/path-old.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/path-old.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/path.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/C_standalone/path.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeBROWSER.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeBROWSER.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/Iterable.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/Iterable.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/LiteCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/LiteCore.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/LiteCore.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/LiteCore.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/Map.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/Map.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/Map.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/PMREX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/PMREX.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/PMREX.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/PMREX.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/dns.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/dns.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/fs.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/nicegen.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/nicegen.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/path.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/path.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/shims.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/interfaces/shims.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/interfaces/shims.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/js_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/js_lite.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/ControlledError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/ControlledError.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/GeneralOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/GeneralOptions.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/OptionsParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/OptionsParser.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/UniqueID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/UniqueID.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/color.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/logger.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-c/lib/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-c/lib/mkPath.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/ASTBase.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/Compiler.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/Grammar.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/Names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/Names.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/Parser.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/Producer_js.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/Project.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/Validate.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/build.sh -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/debug.sh -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/fs.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/path-old.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/path-old.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/path.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/C_standalone/path.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeBROWSER.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeBROWSER.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/Iterable.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/Iterable.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/LiteC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/LiteC.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/LiteCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/LiteCore.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/LiteCore.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/LiteCore.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/Map.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/Map.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/Map.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/PMREX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/PMREX.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/PMREX.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/PMREX.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/dns.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/dns.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/fs.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/nicegen.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/nicegen.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/path.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/path.interface.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/shims.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/interfaces/shims.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/interfaces/shims.lite.md -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/js_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/js_lite.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/ControlledError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/ControlledError.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/Environment.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/GeneralOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/GeneralOptions.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/OptionsParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/OptionsParser.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/SourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/SourceMap.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/UniqueID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/UniqueID.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/color.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/lite: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | //run LiteScript Command Line Interface 3 | require('./js_lite'); 4 | -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/logger.js -------------------------------------------------------------------------------- /devel/generated-js/v0.8/lite-to-js/lib/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/generated-js/v0.8/lite-to-js/lib/mkPath.js -------------------------------------------------------------------------------- /devel/litec/LiteCore implementation details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/LiteCore implementation details.md -------------------------------------------------------------------------------- /devel/litec/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/NOTES.md -------------------------------------------------------------------------------- /devel/litec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/README.md -------------------------------------------------------------------------------- /devel/litec/core/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/.dep.inc -------------------------------------------------------------------------------- /devel/litec/core/ImmutArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/ImmutArray.c -------------------------------------------------------------------------------- /devel/litec/core/LiteC-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/LiteC-core.c -------------------------------------------------------------------------------- /devel/litec/core/LiteC-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/LiteC-core.h -------------------------------------------------------------------------------- /devel/litec/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/Makefile -------------------------------------------------------------------------------- /devel/litec/core/PMREX-native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/PMREX-native.c -------------------------------------------------------------------------------- /devel/litec/core/PMREX-native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/PMREX-native.h -------------------------------------------------------------------------------- /devel/litec/core/any.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/any.c -------------------------------------------------------------------------------- /devel/litec/core/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/any.h -------------------------------------------------------------------------------- /devel/litec/core/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/exceptions.c -------------------------------------------------------------------------------- /devel/litec/core/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/exceptions.h -------------------------------------------------------------------------------- /devel/litec/core/fs-native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/fs-native.c -------------------------------------------------------------------------------- /devel/litec/core/fs-native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/fs-native.h -------------------------------------------------------------------------------- /devel/litec/core/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/fs.h -------------------------------------------------------------------------------- /devel/litec/core/keytree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/keytree.c -------------------------------------------------------------------------------- /devel/litec/core/simplemalloc.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devel/litec/core/simplemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/simplemalloc.h -------------------------------------------------------------------------------- /devel/litec/core/tests/String_charCodeAt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/tests/String_charCodeAt.c -------------------------------------------------------------------------------- /devel/litec/core/utf8strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/utf8strings.c -------------------------------------------------------------------------------- /devel/litec/core/utf8strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/utf8strings.h -------------------------------------------------------------------------------- /devel/litec/core/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/util.c -------------------------------------------------------------------------------- /devel/litec/core/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/core/util.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_allocator.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_amiga_redirects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_amiga_redirects.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_backptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_backptr.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_config_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_config_macros.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_cpp.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_gcj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_gcj.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_inline.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_mark.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_pthread_redirects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_pthread_redirects.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_tiny_fl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_tiny_fl.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_typed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_typed.h -------------------------------------------------------------------------------- /devel/litec/include/gc/gc_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/gc_version.h -------------------------------------------------------------------------------- /devel/litec/include/gc/leak_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/leak_detector.h -------------------------------------------------------------------------------- /devel/litec/include/gc/new_gc_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/new_gc_alloc.h -------------------------------------------------------------------------------- /devel/litec/include/gc/weakpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/gc/weakpointer.h -------------------------------------------------------------------------------- /devel/litec/include/libgc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/include/libgc.so -------------------------------------------------------------------------------- /devel/litec/litec-to-c/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/.dep.inc -------------------------------------------------------------------------------- /devel/litec/litec-to-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/Makefile -------------------------------------------------------------------------------- /devel/litec/litec-to-c/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/build-lite.sh -------------------------------------------------------------------------------- /devel/litec/litec-to-c/compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/compare -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/C_standalone/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/C_standalone/build.sh -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/C_standalone/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/C_standalone/debug.sh -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/C_standalone/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/C_standalone/fs.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/C_standalone/path-old.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/C_standalone/path-old.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/C_standalone/path.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/C_standalone/path.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/Iterable.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/Iterable.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/LiteCore.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/LiteCore.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/Map.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/Map.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/PMREX.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/PMREX.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/fs.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/nicegen.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/nicegen.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/path.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/path.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/interfaces/shims.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/interfaces/shims.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/lib/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/lib/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/Makefile-Release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/Makefile-Release.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/Package-Debug.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/Package-Debug.bash -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/Package-Release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/Package-Release.bash -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/configurations.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/private/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/private/Makefile-variables.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/private/launcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/private/launcher.properties -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/private/private.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-c/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/nbproject/project.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-c/perf-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/perf-release -------------------------------------------------------------------------------- /devel/litec/litec-to-c/run-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/run-debug -------------------------------------------------------------------------------- /devel/litec/litec-to-c/run-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/run-release -------------------------------------------------------------------------------- /devel/litec/litec-to-c/test.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/test.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-c/tobin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-c/tobin -------------------------------------------------------------------------------- /devel/litec/litec-to-js/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/.dep.inc -------------------------------------------------------------------------------- /devel/litec/litec-to-js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/Makefile -------------------------------------------------------------------------------- /devel/litec/litec-to-js/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/build-lite.sh -------------------------------------------------------------------------------- /devel/litec/litec-to-js/compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/compare -------------------------------------------------------------------------------- /devel/litec/litec-to-js/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/core -------------------------------------------------------------------------------- /devel/litec/litec-to-js/interfaces/GlobalScopeBROWSER.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/interfaces/GlobalScopeBROWSER.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/interfaces/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/interfaces/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/interfaces/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/interfaces/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/interfaces/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/interfaces/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/lib/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/lib/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/lib/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/lib/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/lib/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/lib/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/Makefile-Release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/Makefile-Release.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/Package-Debug.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/Package-Debug.bash -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/Package-Release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/Package-Release.bash -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/configurations.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/private/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/private/Makefile-variables.mk -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/private/launcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/private/launcher.properties -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/private/private.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-js/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/nbproject/project.xml -------------------------------------------------------------------------------- /devel/litec/litec-to-js/perf-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/perf-release -------------------------------------------------------------------------------- /devel/litec/litec-to-js/run-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/run-debug -------------------------------------------------------------------------------- /devel/litec/litec-to-js/run-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/run-release -------------------------------------------------------------------------------- /devel/litec/litec-to-js/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/run.sh -------------------------------------------------------------------------------- /devel/litec/litec-to-js/test.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/test.lite.md -------------------------------------------------------------------------------- /devel/litec/litec-to-js/tobin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/litec/litec-to-js/tobin -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/README.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/ast.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/compileFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/compileFiles.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/compiler.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/generator.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/grammar.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/interactive.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/lexer.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/literate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/literate.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/parser.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.0-js/sugar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.0-js/sugar.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/ASTBase.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/ASTBase.lite -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/Compiler.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/Compiler.lite -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/Grammar.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/Grammar.lite -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/Lexer.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/Lexer.lite -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/Producer_js.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/Producer_js.lite -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/README.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/TypeCheck.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/TypeCheck.lite -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/browser-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/browser-environment-support.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/node-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/node-environment-support.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/string-shims.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.1/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.1/util.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/ASTBase.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/Compiler.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/Compiler.lite -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/Environment.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/Grammar.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/Lexer.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/Lexer.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/NOTES.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/NameDeclaration.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/NameDeclaration.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/Producer_js.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/README.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/Validate.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/browser-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/browser-environment-support.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/node-environment-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/node-environment-support.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/string-shims.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.2/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.2/util.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/Compiler.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/Compiler.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/NOTES.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/README.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/ASTBase.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/Environment.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/Grammar.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/Lexer.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/Lexer.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/NameDeclaration.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/NameDeclaration.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/Producer_js.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/Validate.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/build.sh: -------------------------------------------------------------------------------- 1 | cd .. 2 | sh ./build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/log.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/log.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/mkPath.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/mkPath.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/node-environment-support.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/node-environment-support.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/sourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/sourceMap.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.3/node_modules/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.3/node_modules/string-shims.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/ASTBase.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/Compiler.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/Compiler.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/Environment.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/Grammar.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/Lexer.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/Lexer.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/NOTES.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/NameDeclaration.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/NameDeclaration.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/Producer_js.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/README.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/Validate.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/browser/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/browser/build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/browser/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/browser/fs.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/browser/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/browser/fs.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/browser/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/browser/path.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/browser/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/browser/path.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/log.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/log.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/mkPath.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/mkPath.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/string-shims.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/string-shims.interface.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.4/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.4/string-shims.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/ASTBase.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/Args.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/Args.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/Compiler.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/Compiler.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/Environment.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/Grammar.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/Lexer.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/Lexer.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/NOTES.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/NameDeclaration.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/NameDeclaration.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/Producer_js.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/README.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/SourceMap.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/Validate.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/browser/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/browser/build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/browser/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/browser/fs.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/browser/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/browser/fs.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/browser/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/browser/path.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/browser/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/browser/path.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/lite-cli.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/lite-cli.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/log.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/log.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/mkPath.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/mkPath.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/string-shims.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/string-shims.interface.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.5/string-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.5/string-shims.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/ASTBase.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/Args.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/Args.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/Compiler.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/Compiler.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/Environment.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/Grammar.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/Lexer.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/Lexer.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/NOTES.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/NameDeclaration.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/NameDeclaration.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/Producer_js.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/README.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/SourceMap.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/Validate.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/browser/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/browser/build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/browser/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/browser/fs.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/browser/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/browser/fs.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/browser/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/browser/path.js -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/browser/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/browser/path.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/build-PRODC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/build-PRODC.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/build-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/build-cli.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/build.sh -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/lite-cli.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/lite-cli.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/log.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/log.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/mkPath.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/mkPath.lite.md -------------------------------------------------------------------------------- /devel/source/prev/source-v0.6/string-shims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/prev/source-v0.6/string-shims.md -------------------------------------------------------------------------------- /devel/source/v0.7/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/ASTBase.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/Args.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Args.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/Compiler.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Compiler.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Environment.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Grammar.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/Lexer.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Lexer.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/NOTES.md -------------------------------------------------------------------------------- /devel/source/v0.7/NameDeclaration.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/NameDeclaration.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Producer_js.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/Project.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Project.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/README.md -------------------------------------------------------------------------------- /devel/source/v0.7/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/SourceMap.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/StringShims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/StringShims.md -------------------------------------------------------------------------------- /devel/source/v0.7/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/Validate.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/bld-c-lite-to-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/bld-c-lite-to-js.sh -------------------------------------------------------------------------------- /devel/source/v0.7/browser/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/browser/build.sh -------------------------------------------------------------------------------- /devel/source/v0.7/browser/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/browser/fs.js -------------------------------------------------------------------------------- /devel/source/v0.7/browser/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/browser/fs.md -------------------------------------------------------------------------------- /devel/source/v0.7/browser/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/browser/path.js -------------------------------------------------------------------------------- /devel/source/v0.7/browser/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/browser/path.md -------------------------------------------------------------------------------- /devel/source/v0.7/build-PRODC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/build-PRODC.sh -------------------------------------------------------------------------------- /devel/source/v0.7/build-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/build-cli.sh -------------------------------------------------------------------------------- /devel/source/v0.7/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/build-lite.sh -------------------------------------------------------------------------------- /devel/source/v0.7/c_lite.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/c_lite.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/lite-cli.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/lite-cli.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/log.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/log.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/mkPath.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/mkPath.lite.md -------------------------------------------------------------------------------- /devel/source/v0.7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.7/package.json -------------------------------------------------------------------------------- /devel/source/v0.8/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/ASTBase.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/Compiler.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Compiler.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Grammar.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/Names.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Names.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/Parser.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Parser.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/Producer_c.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Producer_c.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Producer_js.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/Project.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Project.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/README.md -------------------------------------------------------------------------------- /devel/source/v0.8/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/Validate.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/bld/bld-c-ls-to-c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/bld/bld-c-ls-to-c.sh -------------------------------------------------------------------------------- /devel/source/v0.8/bld/bld-c-ls-to-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/bld/bld-c-ls-to-js.sh -------------------------------------------------------------------------------- /devel/source/v0.8/bld/bld-js-ls-to-c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/bld/bld-js-ls-to-c.sh -------------------------------------------------------------------------------- /devel/source/v0.8/bld/bld-js-ls-to-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/bld/bld-js-ls-to-js.sh -------------------------------------------------------------------------------- /devel/source/v0.8/bld/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/bld/build-lite.sh -------------------------------------------------------------------------------- /devel/source/v0.8/bld/use-c-ls-to-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/bld/use-c-ls-to-js.sh -------------------------------------------------------------------------------- /devel/source/v0.8/bld/use-v07.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/bld/use-v07.sh -------------------------------------------------------------------------------- /devel/source/v0.8/browser/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/browser/build.sh -------------------------------------------------------------------------------- /devel/source/v0.8/browser/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/browser/fs.js -------------------------------------------------------------------------------- /devel/source/v0.8/browser/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/browser/fs.md -------------------------------------------------------------------------------- /devel/source/v0.8/browser/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/browser/path.js -------------------------------------------------------------------------------- /devel/source/v0.8/browser/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/browser/path.md -------------------------------------------------------------------------------- /devel/source/v0.8/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/build-lite.sh -------------------------------------------------------------------------------- /devel/source/v0.8/c_lite.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/c_lite.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/C_standalone/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/C_standalone/build.sh -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/C_standalone/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/C_standalone/debug.sh -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/C_standalone/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/C_standalone/fs.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/C_standalone/path.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/C_standalone/path.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/GlobalScopeBROWSER.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/GlobalScopeBROWSER.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/Iterable.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/Iterable.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/LiteCore.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/LiteCore.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/Map.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/Map.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/PMREX.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/PMREX.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/dns.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/dns.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/fs.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/nicegen.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/nicegen.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/path.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/path.interface.md -------------------------------------------------------------------------------- /devel/source/v0.8/interfaces/shims.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/interfaces/shims.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/js_lite.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/js_lite.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/ControlledError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/ControlledError.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/Environment.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/GeneralOptions.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/GeneralOptions.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/OptionsParser.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/OptionsParser.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/SourceMap.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/UniqueID.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/UniqueID.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/color.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/color.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/logger.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/logger.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lib/mkPath.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/lib/mkPath.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/lite: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | //run LiteScript Command Line Interface 3 | require('./js_lite'); 4 | -------------------------------------------------------------------------------- /devel/source/v0.8/notes/NOTES iterators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/notes/NOTES iterators.md -------------------------------------------------------------------------------- /devel/source/v0.8/notes/NOTES javascript or operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/notes/NOTES javascript or operator.md -------------------------------------------------------------------------------- /devel/source/v0.8/notes/NOTES literal objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/notes/NOTES literal objects.md -------------------------------------------------------------------------------- /devel/source/v0.8/notes/NOTES named params analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/notes/NOTES named params analysis.md -------------------------------------------------------------------------------- /devel/source/v0.8/notes/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/notes/NOTES.md -------------------------------------------------------------------------------- /devel/source/v0.8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/package.json -------------------------------------------------------------------------------- /devel/source/v0.8/utility/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/utility/build-lite.sh -------------------------------------------------------------------------------- /devel/source/v0.8/utility/mkInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/utility/mkInterface.js -------------------------------------------------------------------------------- /devel/source/v0.8/utility/mkInterface.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/utility/mkInterface.js.map -------------------------------------------------------------------------------- /devel/source/v0.8/utility/mkInterface.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/utility/mkInterface.lite.md -------------------------------------------------------------------------------- /devel/source/v0.8/utility/process.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/utility/process.temp -------------------------------------------------------------------------------- /devel/source/v0.8/utility/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/source/v0.8/utility/temp -------------------------------------------------------------------------------- /devel/temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/temp.js -------------------------------------------------------------------------------- /devel/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/test.js -------------------------------------------------------------------------------- /devel/util/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/build-lite.sh -------------------------------------------------------------------------------- /devel/util/compile-lite-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/compile-lite-cli -------------------------------------------------------------------------------- /devel/util/copy-to-main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/copy-to-main -------------------------------------------------------------------------------- /devel/util/findfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/findfiles.js -------------------------------------------------------------------------------- /devel/util/fsUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/fsUtil.js -------------------------------------------------------------------------------- /devel/util/generated/interfaces/nicegen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/generated/interfaces/nicegen.js -------------------------------------------------------------------------------- /devel/util/liteVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/liteVersion.js -------------------------------------------------------------------------------- /devel/util/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/npm-debug.log -------------------------------------------------------------------------------- /devel/util/old/lite-js-BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/old/lite-js-BAK -------------------------------------------------------------------------------- /devel/util/old/update-package-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/old/update-package-json.md -------------------------------------------------------------------------------- /devel/util/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/release -------------------------------------------------------------------------------- /devel/util/release-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/release-7 -------------------------------------------------------------------------------- /devel/util/release-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/release-debug.sh -------------------------------------------------------------------------------- /devel/util/strip-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/strip-comments.js -------------------------------------------------------------------------------- /devel/util/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/test.js -------------------------------------------------------------------------------- /devel/util/tests/LiteC-core/Test-CharCodeAt.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/LiteC-core/Test-CharCodeAt.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/Assignment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/Assignment.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/Boolean.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/Boolean.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/CaseWhen.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/CaseWhen.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/Default.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/Default.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/DoWhileUntil.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/DoWhileUntil.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/IfStatements.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/IfStatements.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/Shims.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/Shims.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/StringInterpolation.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/StringInterpolation.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/Strings.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/Strings.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/Ternary.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/Ternary.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/TryCatch.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/TryCatch.lite.md -------------------------------------------------------------------------------- /devel/util/tests/allVersions/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/allVersions/build-lite.sh -------------------------------------------------------------------------------- /devel/util/tests/build-lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/build-lite.sh -------------------------------------------------------------------------------- /devel/util/tests/extra-check-version.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/extra-check-version.lite.md -------------------------------------------------------------------------------- /devel/util/tests/extra-nice-function.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/extra-nice-function.lite.md -------------------------------------------------------------------------------- /devel/util/tests/findfiles.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/findfiles.lite.md -------------------------------------------------------------------------------- /devel/util/tests/generated/js/extra-nice-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/generated/js/extra-nice-function.js -------------------------------------------------------------------------------- /devel/util/tests/generated/js/interfaces/nicegen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/generated/js/interfaces/nicegen.js -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Assignment.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Assignment.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Boolean.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Boolean.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Classes.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Classes.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Default.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Default.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/DoWhileUntil.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/DoWhileUntil.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Expressions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Expressions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/ForStatement.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/ForStatement.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Functions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Functions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/IfStatements.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/IfStatements.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Regex.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Regex.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/StringInterpolation.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/StringInterpolation.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Strings.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Strings.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/Ternary.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/Ternary.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.1/TryCatch.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.1/TryCatch.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Assignment.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Assignment.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Boolean.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Boolean.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Classes.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Classes.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Classes2.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Classes2.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Compiler.Validation.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Compiler.Validation.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Default.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Default.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/DoWhileUntil.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/DoWhileUntil.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Expressions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Expressions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/ForStatement.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/ForStatement.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Functions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Functions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/IfStatements.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/IfStatements.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Regex.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Regex.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/StringInterpolation.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/StringInterpolation.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Strings.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Strings.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/Ternary.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/Ternary.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.2/TryCatch.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.2/TryCatch.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Assignment.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Assignment.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Boolean.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Boolean.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Classes-dot-this.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Classes-dot-this.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Classes.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Classes.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Compile-If.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Compile-If.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Default.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Default.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/DoWhileUntil.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/DoWhileUntil.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Expressions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Expressions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/ForStatement-Where.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/ForStatement-Where.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/ForStatement.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/ForStatement.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Functions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Functions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/IfStatements.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/IfStatements.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/StringInterpolation.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/StringInterpolation.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Strings.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Strings.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/Ternary.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/Ternary.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.3/TryCatch.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.3/TryCatch.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Assignment.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Assignment.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Boolean.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Boolean.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/CaseWhen.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/CaseWhen.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Classes-dot-this.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Classes-dot-this.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Classes.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Classes.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Compile-If.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Compile-If.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Default.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Default.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/DoWhileUntil.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/DoWhileUntil.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Expressions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Expressions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/ForStatement-Where.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/ForStatement-Where.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/ForStatement.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/ForStatement.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Functions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Functions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/IfStatements.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/IfStatements.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Shims.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Shims.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/StringInterpolation.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/StringInterpolation.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Strings.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Strings.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Switch.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Switch.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/Ternary.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/Ternary.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/TryCatch.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/TryCatch.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/sourceMap/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/sourceMap/SourceMap.lite.md -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/sourceMap/build.sh: -------------------------------------------------------------------------------- 1 | node ../../lite -use v0.4.0 -d -c sourceMapTest -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/sourceMap/expect.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/sourceMap/expect.lite.md -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.4/sourceMap/sourceMapTest.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.4/sourceMap/sourceMapTest.lite.md -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Assignment.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Assignment.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Boolean.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Boolean.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/CaseWhen.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/CaseWhen.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Classes-dot-this.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Classes-dot-this.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Classes.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Classes.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Compile-If.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Compile-If.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Default.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Default.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/DoWhileUntil.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/DoWhileUntil.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Expressions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Expressions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/ForStatement-Where.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/ForStatement-Where.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/ForStatement.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/ForStatement.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Functions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Functions.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/IfStatements.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/IfStatements.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Namespace.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Namespace.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Shims.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Shims.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/StringInterpolation.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/StringInterpolation.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Strings.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Strings.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Switch.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Switch.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/Ternary.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/Ternary.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/TryCatch.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/TryCatch.lite -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/sourceMap/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/sourceMap/SourceMap.lite.md -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/sourceMap/build.sh: -------------------------------------------------------------------------------- 1 | node ../../lite -use v0.4.0 -d -c sourceMapTest -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/sourceMap/expect.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/sourceMap/expect.lite.md -------------------------------------------------------------------------------- /devel/util/tests/prev/test-v0.5/sourceMap/sourceMapTest.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/prev/test-v0.5/sourceMap/sourceMapTest.lite.md -------------------------------------------------------------------------------- /devel/util/tests/test-sourcemap/smtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/test-sourcemap/smtest.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/CaseWhen.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/CaseWhen.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.6/Classes-dot-this.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/Classes-dot-this.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.6/Classes.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/Classes.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.6/Compile-If.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/Compile-If.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.6/build.sh: -------------------------------------------------------------------------------- 1 | lite -run extra-check-version -------------------------------------------------------------------------------- /devel/util/tests/v0.6/compiler-generate/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/compiler-generate/build.sh -------------------------------------------------------------------------------- /devel/util/tests/v0.6/compiler-generate/compiler-generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/compiler-generate/compiler-generate.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/compiler-generate/compiler-generate.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/compiler-generate/compiler-generate.js.map -------------------------------------------------------------------------------- /devel/util/tests/v0.6/compiler-generate/compiler-generate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/compiler-generate/compiler-generate.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/event-emitter/doors.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/event-emitter/doors.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/event-emitter/doors.lite.md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/event-emitter/doors.lite.md.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/nice-function/build.sh: -------------------------------------------------------------------------------- 1 | lite -es6 -run dns -------------------------------------------------------------------------------- /devel/util/tests/v0.6/nice-function/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/nice-function/dns.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/nice-function/dns.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/nice-function/dns.js.map -------------------------------------------------------------------------------- /devel/util/tests/v0.6/nice-function/dns.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/nice-function/dns.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/nice-function/dns.lite.md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/nice-function/dns.lite.md.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/nice-function/sequential-ug-dir.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/nice-function/sequential-ug-dir.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/require-compiler/compileDir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/require-compiler/compileDir.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/require-compiler/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/require-compiler/src/README.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/require-compiler/src/lite-cli.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/require-compiler/src/lite-cli.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/soft-tabs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/soft-tabs/build.sh -------------------------------------------------------------------------------- /devel/util/tests/v0.6/soft-tabs/dns.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/soft-tabs/dns.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/soft-tabs/sequential-ug-dir.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/soft-tabs/sequential-ug-dir.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/soft-tabs/simple.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/soft-tabs/simple.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/sourceMap/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/sourceMap/SourceMap.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/sourceMap/SourceMap.lite.md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/sourceMap/SourceMap.lite.md.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/sourceMap/build.sh: -------------------------------------------------------------------------------- 1 | node ../../lite -use v0.4.0 -d -c sourceMapTest -------------------------------------------------------------------------------- /devel/util/tests/v0.6/sourceMap/expect.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/sourceMap/expect.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/sourceMap/expect.lite.md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/sourceMap/expect.lite.md.js -------------------------------------------------------------------------------- /devel/util/tests/v0.6/sourceMap/sourceMapTest.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/sourceMap/sourceMapTest.lite.md -------------------------------------------------------------------------------- /devel/util/tests/v0.6/sourceMap/sourceMapTest.lite.md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.6/sourceMap/sourceMapTest.lite.md.js -------------------------------------------------------------------------------- /devel/util/tests/v0.7/Classes-dot-this.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.7/Classes-dot-this.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.7/Classes.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.7/Classes.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.7/Expressions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.7/Expressions.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.7/ForStatement.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.7/ForStatement.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.7/Functions.lite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.7/Functions.lite -------------------------------------------------------------------------------- /devel/util/tests/v0.7/Namespace.lite-disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.7/Namespace.lite-disabled -------------------------------------------------------------------------------- /devel/util/tests/v0.7/Switch.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/tests/v0.7/Switch.lite.md -------------------------------------------------------------------------------- /devel/util/use-generated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/devel/util/use-generated -------------------------------------------------------------------------------- /devel/util/wdg.lite.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/blog-example-dns.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/doc/blog-example-dns.lite.md -------------------------------------------------------------------------------- /doc/compile-from-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/doc/compile-from-js.md -------------------------------------------------------------------------------- /doc/self-compiling-LiteScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/doc/self-compiling-LiteScript.md -------------------------------------------------------------------------------- /extras/sublime/LiteScript/Day.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/extras/sublime/LiteScript/Day.tmTheme -------------------------------------------------------------------------------- /extras/sublime/LiteScript/Lite.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/extras/sublime/LiteScript/Lite.sublime-settings -------------------------------------------------------------------------------- /extras/sublime/LiteScript/Lite.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/extras/sublime/LiteScript/Lite.tmLanguage -------------------------------------------------------------------------------- /extras/sublime/LiteScript/LiteScript.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/extras/sublime/LiteScript/LiteScript.sublime-build -------------------------------------------------------------------------------- /extras/sublime/LiteScript/Night.tmTheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/extras/sublime/LiteScript/Night.tmTheme -------------------------------------------------------------------------------- /extras/sublime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/extras/sublime/README.md -------------------------------------------------------------------------------- /lib/ASTBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/ASTBase.js -------------------------------------------------------------------------------- /lib/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/Compiler.js -------------------------------------------------------------------------------- /lib/Grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/Grammar.js -------------------------------------------------------------------------------- /lib/Names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/Names.js -------------------------------------------------------------------------------- /lib/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/Parser.js -------------------------------------------------------------------------------- /lib/Producer_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/Producer_js.js -------------------------------------------------------------------------------- /lib/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/Project.js -------------------------------------------------------------------------------- /lib/Validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/Validate.js -------------------------------------------------------------------------------- /lib/interfaces/C_standalone/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/C_standalone/build.sh -------------------------------------------------------------------------------- /lib/interfaces/C_standalone/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/C_standalone/debug.sh -------------------------------------------------------------------------------- /lib/interfaces/C_standalone/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/C_standalone/fs.interface.md -------------------------------------------------------------------------------- /lib/interfaces/C_standalone/path-old.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/C_standalone/path-old.lite.md -------------------------------------------------------------------------------- /lib/interfaces/C_standalone/path.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/C_standalone/path.lite.md -------------------------------------------------------------------------------- /lib/interfaces/GlobalScopeBROWSER.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/GlobalScopeBROWSER.interface.md -------------------------------------------------------------------------------- /lib/interfaces/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /lib/interfaces/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /lib/interfaces/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /lib/interfaces/Iterable.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/Iterable.lite.md -------------------------------------------------------------------------------- /lib/interfaces/LiteC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/LiteC.js -------------------------------------------------------------------------------- /lib/interfaces/LiteCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/LiteCore.js -------------------------------------------------------------------------------- /lib/interfaces/LiteCore.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/LiteCore.lite.md -------------------------------------------------------------------------------- /lib/interfaces/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/Map.js -------------------------------------------------------------------------------- /lib/interfaces/Map.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/Map.lite.md -------------------------------------------------------------------------------- /lib/interfaces/PMREX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/PMREX.js -------------------------------------------------------------------------------- /lib/interfaces/PMREX.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/PMREX.lite.md -------------------------------------------------------------------------------- /lib/interfaces/dns.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/dns.interface.md -------------------------------------------------------------------------------- /lib/interfaces/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/fs.interface.md -------------------------------------------------------------------------------- /lib/interfaces/nicegen.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/nicegen.lite.md -------------------------------------------------------------------------------- /lib/interfaces/path.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/path.interface.md -------------------------------------------------------------------------------- /lib/interfaces/shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/shims.js -------------------------------------------------------------------------------- /lib/interfaces/shims.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/interfaces/shims.lite.md -------------------------------------------------------------------------------- /lib/js_lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/js_lite.js -------------------------------------------------------------------------------- /lib/lib/ControlledError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/ControlledError.js -------------------------------------------------------------------------------- /lib/lib/Environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/Environment.js -------------------------------------------------------------------------------- /lib/lib/GeneralOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/GeneralOptions.js -------------------------------------------------------------------------------- /lib/lib/OptionsParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/OptionsParser.js -------------------------------------------------------------------------------- /lib/lib/SourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/SourceMap.js -------------------------------------------------------------------------------- /lib/lib/UniqueID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/UniqueID.js -------------------------------------------------------------------------------- /lib/lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/color.js -------------------------------------------------------------------------------- /lib/lib/lite: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | //run LiteScript Command Line Interface 3 | require('./js_lite'); 4 | -------------------------------------------------------------------------------- /lib/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/logger.js -------------------------------------------------------------------------------- /lib/lib/mkPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/lib/lib/mkPath.js -------------------------------------------------------------------------------- /lib/lite: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | //run LiteScript Command Line Interface 3 | require('./js_lite'); 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/package.json -------------------------------------------------------------------------------- /reference/ASTBase.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/ASTBase.lite.md -------------------------------------------------------------------------------- /reference/Compiler.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Compiler.lite.md -------------------------------------------------------------------------------- /reference/Grammar.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Grammar.lite.md -------------------------------------------------------------------------------- /reference/Names.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Names.lite.md -------------------------------------------------------------------------------- /reference/Parser.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Parser.lite.md -------------------------------------------------------------------------------- /reference/Producer_c.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Producer_c.lite.md -------------------------------------------------------------------------------- /reference/Producer_js.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Producer_js.lite.md -------------------------------------------------------------------------------- /reference/Project.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Project.lite.md -------------------------------------------------------------------------------- /reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/README.md -------------------------------------------------------------------------------- /reference/Validate.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/Validate.lite.md -------------------------------------------------------------------------------- /reference/c_lite.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/c_lite.lite.md -------------------------------------------------------------------------------- /reference/interfaces/GlobalScopeBROWSER.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/GlobalScopeBROWSER.interface.md -------------------------------------------------------------------------------- /reference/interfaces/GlobalScopeC.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/GlobalScopeC.interface.md -------------------------------------------------------------------------------- /reference/interfaces/GlobalScopeJS.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/GlobalScopeJS.interface.md -------------------------------------------------------------------------------- /reference/interfaces/GlobalScopeNODE.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/GlobalScopeNODE.interface.md -------------------------------------------------------------------------------- /reference/interfaces/Iterable.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/Iterable.lite.md -------------------------------------------------------------------------------- /reference/interfaces/LiteCore.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/LiteCore.lite.md -------------------------------------------------------------------------------- /reference/interfaces/Map.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/Map.lite.md -------------------------------------------------------------------------------- /reference/interfaces/PMREX.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/PMREX.lite.md -------------------------------------------------------------------------------- /reference/interfaces/dns.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/dns.interface.md -------------------------------------------------------------------------------- /reference/interfaces/fs.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/fs.interface.md -------------------------------------------------------------------------------- /reference/interfaces/nicegen.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/nicegen.lite.md -------------------------------------------------------------------------------- /reference/interfaces/path.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/path.interface.md -------------------------------------------------------------------------------- /reference/interfaces/shims.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/interfaces/shims.lite.md -------------------------------------------------------------------------------- /reference/js_lite.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/js_lite.lite.md -------------------------------------------------------------------------------- /reference/lib/ControlledError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/ControlledError.md -------------------------------------------------------------------------------- /reference/lib/Environment.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/Environment.lite.md -------------------------------------------------------------------------------- /reference/lib/GeneralOptions.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/GeneralOptions.lite.md -------------------------------------------------------------------------------- /reference/lib/OptionsParser.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/OptionsParser.lite.md -------------------------------------------------------------------------------- /reference/lib/SourceMap.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/SourceMap.lite.md -------------------------------------------------------------------------------- /reference/lib/UniqueID.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/UniqueID.lite.md -------------------------------------------------------------------------------- /reference/lib/color.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/color.lite.md -------------------------------------------------------------------------------- /reference/lib/logger.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/logger.lite.md -------------------------------------------------------------------------------- /reference/lib/mkPath.lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/reference/lib/mkPath.lite.md -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luciotato/LiteScript/HEAD/test.sh --------------------------------------------------------------------------------