├── .appveyor.yml ├── .builds ├── alpine-latest-cmake.yml ├── archlinux-cmake.yml ├── debian-stable-cmake-all.yml ├── debian-stable-cmake.yml ├── fedora-latest-cmake.yml ├── freebsd-latest-cmake.yml ├── netbsd-latest-cmake.yml ├── openbsd-latest-cmake.yml └── rockylinux-latest-cmake.yml ├── .circleci └── config.yml ├── .github └── workflows │ ├── codeql-analysis.yml │ ├── macos.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── .neonpath ├── .woodpecker.yml ├── AUTHORS.txt ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── antora-playbook.yml ├── bin └── .gitignore ├── common └── neonext.h ├── contrib ├── editors │ ├── Notepad++ │ │ └── Neon.xml │ ├── kedit │ │ └── neon.kld │ └── vim │ │ ├── ftdetect │ │ └── neon.vim │ │ └── syntax │ │ └── neon.vim └── grammar │ ├── .gitignore │ ├── ebnf.py │ ├── ebnf_w3c.neon │ ├── grammar.py │ ├── neon.ebnf │ ├── test-grammar.py │ └── test-random.py ├── data ├── UnicodeData.txt ├── regex-testinput1 └── regex-testoutput1 ├── docs ├── antora.yml └── modules │ ├── ROOT │ ├── nav-end.adoc │ ├── nav-start.adoc │ └── pages │ │ ├── extensions.adoc │ │ ├── intro.adoc │ │ ├── library.adoc │ │ ├── manifesto.adoc │ │ ├── overview.adoc │ │ ├── samples.adoc │ │ └── tutorial.adoc │ └── reference │ ├── nav.adoc │ └── pages │ ├── classes.adoc │ ├── declarations.adoc │ ├── expressions.adoc │ ├── functions.adoc │ ├── grammar.adoc │ ├── lexical.adoc │ ├── modules.adoc │ ├── reference.adoc │ ├── statements.adoc │ └── types.adoc ├── exec ├── cnex │ ├── .gitignore │ ├── CMakeLists.txt │ ├── array.c │ ├── array.h │ ├── bytecode.c │ ├── bytecode.h │ ├── cJSON.c │ ├── cJSON.h │ ├── cell.c │ ├── cell.h │ ├── cnex.c │ ├── dictionary.c │ ├── dictionary.h │ ├── disassembly.c │ ├── disassembly.h │ ├── enums.h │ ├── exclude.txt │ ├── exec.h │ ├── extension.c │ ├── framestack.c │ ├── framestack.h │ ├── gc.c │ ├── gc.h │ ├── global.c │ ├── global.h │ ├── httpserver.c │ ├── httpserver.h │ ├── lib │ │ ├── binary.c │ │ ├── binary.h │ │ ├── datetime.c │ │ ├── datetime.h │ │ ├── debugger.c │ │ ├── debugger.h │ │ ├── file.c │ │ ├── file.h │ │ ├── file_posix.c │ │ ├── file_win32.c │ │ ├── io.c │ │ ├── io.h │ │ ├── math.c │ │ ├── math.h │ │ ├── mmap.h │ │ ├── mmap_posix.c │ │ ├── mmap_win32.c │ │ ├── net.c │ │ ├── net.h │ │ ├── os.c │ │ ├── os.h │ │ ├── os_posix.c │ │ ├── os_win32.c │ │ ├── posix.c │ │ ├── posix.h │ │ ├── process.h │ │ ├── process_posix.c │ │ ├── process_win32.c │ │ ├── random.c │ │ ├── random.h │ │ ├── random_posix.c │ │ ├── random_win32.c │ │ ├── runtime.c │ │ ├── runtime.h │ │ ├── runtime_posix.c │ │ ├── runtime_win32.c │ │ ├── socketx.h │ │ ├── sqlite.c │ │ ├── sqlite.h │ │ ├── string.c │ │ ├── string.h │ │ ├── struct.c │ │ ├── struct.h │ │ ├── sys.c │ │ ├── sys.h │ │ ├── textio.c │ │ ├── textio.h │ │ ├── time.h │ │ ├── time_darwin.c │ │ ├── time_linux.c │ │ ├── time_posix.c │ │ └── time_win32.c │ ├── module.c │ ├── module.h │ ├── nstring.c │ ├── nstring.h │ ├── number.c │ ├── number.h │ ├── object.c │ ├── object.h │ ├── opcode.h │ ├── rtl_platform.h │ ├── rtl_posix.c │ ├── rtl_win32.c │ ├── run_test.py │ ├── stack.c │ ├── stack.h │ ├── support.c │ ├── support.h │ ├── test_number_to_string.c │ ├── test_path_support.c │ ├── test_string_support.c │ ├── util.c │ └── util.h ├── csnex │ ├── App.config │ ├── Builtin.cs │ ├── Bytecode.cs │ ├── CMakeLists.txt │ ├── Cell.cs │ ├── Disassembly.cs │ ├── Enums.cs │ ├── Exceptions.cs │ ├── Exec.cs │ ├── Extensions.cs │ ├── Global.cs │ ├── Number.cs │ ├── Object.cs │ ├── Opcode.cs │ ├── Support.cs │ ├── csnex.cs │ ├── exclude.txt │ ├── lib │ │ ├── console.cs │ │ ├── io.cs │ │ ├── math.cs │ │ ├── random.cs │ │ ├── runtime.cs │ │ ├── string.cs │ │ ├── sys.cs │ │ └── textio.cs │ └── run_test.py ├── gonex │ ├── .gitignore │ ├── CMakeLists.txt │ ├── exclude.txt │ ├── gonex.go │ └── run_test.py ├── jnex │ ├── CMakeLists.txt │ ├── exclude.txt │ ├── run_test.py │ └── src │ │ └── org │ │ ├── neon_lang │ │ └── jnex │ │ │ ├── Bytecode.java │ │ │ ├── Cell.java │ │ │ ├── Executor.java │ │ │ ├── NeObject.java │ │ │ ├── NeObjectArray.java │ │ │ ├── NeObjectBoolean.java │ │ │ ├── NeObjectBytes.java │ │ │ ├── NeObjectDictionary.java │ │ │ ├── NeObjectNative.java │ │ │ ├── NeObjectNumber.java │ │ │ ├── NeObjectString.java │ │ │ ├── NeonException.java │ │ │ └── Util.java │ │ └── nevec │ │ └── rjm │ │ ├── Bernoulli.java │ │ ├── BigComplex.java │ │ ├── BigDecimalMath.java │ │ ├── BigIntegerMath.java │ │ ├── Factorial.java │ │ ├── Ifactor.java │ │ ├── Prime.java │ │ └── Rational.java ├── nenex │ ├── exclude.txt │ ├── nenex.neon │ └── run_test.py ├── pynex │ ├── exclude.txt │ ├── pynex.py │ └── run_test.py └── rsnex │ ├── .gitignore │ ├── CMakeLists.txt │ ├── exclude.txt │ ├── rsnex.rs │ └── run_test.py ├── external ├── CMakeLists.txt ├── IntelRDFPMathLib20U2.tar.gz ├── Natural_Docs_2.3.zip ├── hash-library.zip ├── libbid.cmake ├── libhash.cmake ├── libressl-3.3.5.tar.gz ├── libressl.cmake ├── minijson.cmake ├── minijson_writer-master.zip ├── minizip.cmake ├── naturaldocs.cmake ├── pyparsing-2.4.5.tar.gz ├── pyparsing.cmake ├── sqlite-amalgamation-3320300.zip ├── sqlite.cmake ├── unzip11.zip ├── utfcpp-master.zip ├── utfcpp.cmake ├── zlib-1.2.8.tar.gz └── zlib.cmake ├── gh-pages ├── .gitignore ├── CNAME ├── _layouts │ └── default.html ├── common-errors.md ├── css │ └── screen.css ├── download.md ├── grammar.xhtml ├── html │ └── .gitignore ├── index.md ├── lib │ └── .gitignore ├── motivation.md └── samples │ └── .gitignore ├── lib ├── base.neon ├── bigint.neon ├── binary.cpp ├── binary.neon ├── builtin.cpp ├── builtin.neon ├── cformat.neon ├── complex.neon ├── console.cpp ├── console.neon ├── datetime.cpp ├── datetime.neon ├── debugger.cpp ├── debugger.neon ├── dns.neon ├── encoding.neon ├── extsample │ ├── CMakeLists.txt │ ├── extsample.c │ ├── extsample.neon │ ├── neonext.h │ └── t │ │ └── extsample-test.neon ├── file.cpp ├── file.neon ├── file_posix.cpp ├── file_win32.cpp ├── global.cpp ├── global.neon ├── html │ └── .gitignore ├── http.neon ├── io.cpp ├── io.neon ├── json.neon ├── math.cpp ├── math.neon ├── mmap.neon ├── mmap_posix.cpp ├── mmap_win32.cpp ├── multiarray.neon ├── nd.proj │ ├── .gitignore │ ├── Languages.txt │ ├── Menu.txt │ └── Topics.txt ├── net.cpp ├── net.neon ├── os.cpp ├── os.neon ├── os_posix.cpp ├── os_win32.cpp ├── posix.cpp ├── posix.neon ├── process.neon ├── process_posix.cpp ├── process_win32.cpp ├── random.cpp ├── random.neon ├── random_posix.cpp ├── random_win32.cpp ├── regex.neon ├── runtime.cpp ├── runtime.neon ├── runtime_posix.cpp ├── runtime_win32.cpp ├── sqlite.cpp ├── sqlite.neon ├── string.cpp ├── string.neon ├── struct.cpp ├── struct.neon ├── sys.cpp ├── sys.neon ├── textio.cpp ├── textio.neon ├── time.cpp ├── time.neon ├── time_darwin.cpp ├── time_linux.cpp ├── time_posix.cpp ├── time_win32.cpp └── xml.neon ├── neon ├── lexer.neon └── parser.neon ├── package.json ├── rtl ├── c │ ├── neon.c │ └── neon.h ├── cli │ ├── Builtin.cs │ └── Global.cs ├── cpp │ ├── neon.cpp │ └── neon.h ├── js │ └── global.js └── jvm │ └── neon │ ├── Binary.java │ ├── Builtin.java │ ├── Datetime.java │ ├── File.java │ ├── Global.java │ ├── Hash.java │ ├── Io.java │ ├── Math.java │ ├── Os.java │ ├── Runtime.java │ ├── String.java │ ├── Sys.java │ ├── Textio.java │ ├── Time.java │ └── type │ ├── Array.java │ ├── NeonException.java │ └── Number.java ├── samples ├── 99-bottles │ └── 99-bottles.neon ├── bbs │ └── bbs.neon ├── benchmark │ ├── dhrystone.neon │ └── whetstone.neon ├── cal │ └── cal.neon ├── calculator │ └── calculator.neon ├── dnslookup │ └── dnslookup.neon ├── editor │ └── editor.neon ├── fizzbuzz │ └── fizzbuzz.neon ├── flappy │ └── flappy.neon ├── forth │ ├── forth.neon │ ├── tests.forth │ └── ttester.forth ├── hello │ ├── hello-curses.neon │ └── hello.neon ├── httpd │ └── httpd.neon ├── life │ └── life.neon ├── lisp │ └── lisp.neon ├── mandelbrot │ └── mandelbrot.neon ├── nd.proj │ ├── .gitignore │ ├── Languages.txt │ └── Menu.txt ├── net-services │ ├── daytime.neon │ ├── discard.neon │ ├── echo.neon │ ├── net-services.txt │ └── tftp.neon ├── othello │ └── othello.neon ├── otp │ └── otp.neon ├── quine │ └── quine.neon ├── rain │ └── rain.neon ├── samples.txt ├── sieve │ └── sieve.neon ├── snake │ └── snake.neon ├── spacedebris │ └── spacedebris.neon ├── sudoku │ └── sudoku.neon └── tetris │ └── tetris.neon ├── scripts ├── build_rtl_inc.py ├── build_rtlx_inc.py ├── c-exclude.txt ├── cli-exclude.txt ├── cpp-exclude.txt ├── extract.py ├── extract_errors.neon ├── gmp-fix-config-h.py ├── js-exclude.txt ├── jvm-exclude.txt ├── make_regex_test.py ├── make_thunks.py ├── make_unicode.neon ├── module-install.neon ├── run_c.py ├── run_cli.py ├── run_cpp.py ├── run_js.py ├── run_jvm.py ├── run_test.py ├── test_doc.py ├── test_import_optional.py └── update_docs ├── src ├── analyzer.cpp ├── analyzer.h ├── ast.cpp ├── ast.h ├── bundle.cpp ├── bundle.h ├── bytecode.cpp ├── bytecode.h ├── cell.cpp ├── cell.h ├── compiler.cpp ├── compiler.h ├── compiler_c.cpp ├── compiler_cli.cpp ├── compiler_cpp.cpp ├── compiler_js.cpp ├── compiler_jvm.cpp ├── compiler_null.cpp ├── debuginfo.cpp ├── debuginfo.h ├── disassembler.cpp ├── disassembler.h ├── exec.cpp ├── exec.h ├── httpserver.cpp ├── httpserver.h ├── intrinsic.cpp ├── intrinsic.h ├── lexer.cpp ├── lexer.h ├── neon.cpp ├── neonbind.cpp ├── neonc.cpp ├── neondis.cpp ├── neonstub.cpp ├── neonx.cpp ├── number.cpp ├── number.h ├── object.cpp ├── object.h ├── opcode.h ├── opstack.h ├── parser.cpp ├── parser.h ├── pt.h ├── pt_dump.cpp ├── pt_dump.h ├── repl.cpp ├── repl.h ├── rtl_compile.cpp ├── rtl_compile.h ├── rtl_exec.cpp ├── rtl_exec.h ├── rtl_platform.h ├── rtl_posix.cpp ├── rtl_win32.cpp ├── socketx.h ├── sql.cpp ├── sql.h ├── support.cpp ├── support.h ├── support_compiler.cpp ├── support_exec.cpp ├── token.h ├── utf8string.h ├── util.cpp ├── util.h ├── version.cpp.in └── version.h ├── supplemental-ui └── partials │ └── header-content.hbs ├── t ├── 42.neon ├── arithmetic.neon ├── arithmetic2.neon ├── array-append.neon ├── array-concat.neon ├── array-extend.neon ├── array-find.neon ├── array-fraction.neon ├── array-index-write.neon ├── array-index.neon ├── array-last-method.neon ├── array-negative.neon ├── array-remove.neon ├── array-resize.neon ├── array-reversed.neon ├── array-slice.neon ├── array-sparse.neon ├── array-subscript.neon ├── array-tostring.neon ├── array.neon ├── array2d.neon ├── arraysize.neon ├── assert-enum.neon ├── assert-fail.neon ├── assert-fail2.neon ├── assert-multiline.neon ├── assert.neon ├── assign-ignore.neon ├── assign.neon ├── assignment.neon ├── base-test.neon ├── bases.neon ├── bigint-test.neon ├── binary-test.neon ├── boolean.neon ├── bytecode-stringtable.neon ├── bytes-embed.neon ├── bytes-index.neon ├── bytes-literal.neon ├── bytes-slice.neon ├── bytes-splice.neon ├── bytes-tostring.neon ├── bytes-value-index.neon ├── bytes.neon ├── case-jumptbl.neon ├── case-overlap.neon ├── case.neon ├── case3.neon ├── cformat-test.neon ├── check-if.neon ├── check-valid.neon ├── check.neon ├── choice-recursive.neon ├── choice.neon ├── class-empty.neon ├── cmdline.neon ├── comments-block5.neon ├── comments.neon ├── comparison.neon ├── comparison2.neon ├── compile-only │ ├── LexerBufferTest1.neon │ ├── LexerBufferTest2.neon │ ├── LexerBufferTest3.neon │ ├── LexerBufferTest4.neon │ ├── LexerBufferTest5.neon │ ├── assign-nothing.neon │ ├── assign2.neon │ ├── base-decimal.neon │ ├── base-invalid-digit.neon │ ├── base-invalid.neon │ ├── base-invalidchar.neon │ ├── case-number.neon │ ├── case2.neon │ ├── case4.neon │ ├── check-case.neon │ ├── choice-out.neon │ ├── comments-block.neon │ ├── comments-block2.neon │ ├── comments-block3.neon │ ├── comments-block4.neon │ ├── comments-block6.neon │ ├── const-assign.neon │ ├── const-notconst.neon │ ├── duplicate.neon │ ├── for-nested.neon │ ├── for-readonly.neon │ ├── foreach-bytes.neon │ ├── global-shadow.neon │ ├── if-valid-else.neon │ ├── let-assign.neon │ ├── literal-dup.neon │ ├── loop-return-for.neon │ ├── loop-return-foreach.neon │ ├── loop-return-repeat.neon │ ├── loop-return-while.neon │ ├── methods-self.neon │ ├── mismatch.neon │ ├── module-assign-let.neon │ ├── module-assign-var.neon │ ├── module-scope.neon │ ├── module.neon │ ├── pointer6.neon │ ├── return.neon │ ├── shadow.neon │ ├── shadow2.neon │ ├── type_mismatch.neon │ ├── uninitialised-case-noelse.neon │ ├── uninitialised-if-exit.neon │ ├── uninitialised-if-noelse.neon │ ├── uninitialised-nested.neon │ ├── uninitialised-out-param-exit.neon │ ├── uninitialised-out-param-return.neon │ ├── uninitialised-out-param.neon │ ├── uninitialised-simple.neon │ ├── unused-return.neon │ ├── unused-scope.neon │ ├── unused.neon │ ├── utf8-invalid.neon │ └── var-declaration2.neon ├── compile-time-only │ └── missing2.neon ├── complex-test.neon ├── concat-bytes.neon ├── concat.neon ├── conditional.neon ├── const-boolean.neon ├── const-chain.neon ├── const-expression.neon ├── const-string.neon ├── const.neon ├── datetime-test.neon ├── debug-example.neon ├── debug.neon ├── decimal.neon ├── dictionary-keys.neon ├── dictionary-sorted.neon ├── dictionary.neon ├── divide-by-zero.neon ├── dns-test.neon ├── empty.neon ├── encoding-base64.neon ├── enum.neon ├── enum3.neon ├── equality.neon ├── errors │ ├── N1000.neon │ ├── N1003.neon │ ├── N1004.neon │ ├── N1005.neon │ ├── N1006.neon │ ├── N1007.neon │ ├── N1008.neon │ ├── N1009.neon │ ├── N1010.neon │ ├── N1011.neon │ ├── N1012.neon │ ├── N1013.neon │ ├── N1014.neon │ ├── N1015.neon │ ├── N1016.neon │ ├── N1017.neon │ ├── N1018.neon │ ├── N1019.neon │ ├── N1020.neon │ ├── N1021.neon │ ├── N1022.neon │ ├── N1024.neon │ ├── N1025.neon │ ├── N1026.neon │ ├── N1027.neon │ ├── N1028.neon │ ├── N1029.neon │ ├── N2002.neon │ ├── N2003.neon │ ├── N2004.neon │ ├── N2005.neon │ ├── N2006.neon │ ├── N2007.neon │ ├── N2008.neon │ ├── N2009.neon │ ├── N2010.neon │ ├── N2012.neon │ ├── N2013.neon │ ├── N2014.neon │ ├── N2015.neon │ ├── N2016.neon │ ├── N2017.neon │ ├── N2018.neon │ ├── N2019.neon │ ├── N2020.neon │ ├── N2021.neon │ ├── N2022.neon │ ├── N2023.neon │ ├── N2024.neon │ ├── N2025.neon │ ├── N2026.neon │ ├── N2027.neon │ ├── N2028.neon │ ├── N2029.neon │ ├── N2030.neon │ ├── N2031.neon │ ├── N2032.neon │ ├── N2033.neon │ ├── N2034.neon │ ├── N2035.neon │ ├── N2036.neon │ ├── N2037.neon │ ├── N2038.neon │ ├── N2039.neon │ ├── N2040.neon │ ├── N2041.neon │ ├── N2042.neon │ ├── N2043.neon │ ├── N2044.neon │ ├── N2048.neon │ ├── N2052.neon │ ├── N2053.neon │ ├── N2054.neon │ ├── N2055.neon │ ├── N2056.neon │ ├── N2057.neon │ ├── N2058.neon │ ├── N2059.neon │ ├── N2060.neon │ ├── N2061.neon │ ├── N2062.neon │ ├── N2063.neon │ ├── N2064.neon │ ├── N2065.neon │ ├── N2066.neon │ ├── N2067.neon │ ├── N2068.neon │ ├── N2069.neon │ ├── N2071.neon │ ├── N2072.neon │ ├── N2073.neon │ ├── N2074.neon │ ├── N2075.neon │ ├── N2078.neon │ ├── N2079.neon │ ├── N2080.neon │ ├── N2081.neon │ ├── N2082.neon │ ├── N2083.neon │ ├── N2084.neon │ ├── N2085.neon │ ├── N2086.neon │ ├── N2087.neon │ ├── N2089.neon │ ├── N2090.neon │ ├── N2091.neon │ ├── N2092.neon │ ├── N2093.neon │ ├── N2094.neon │ ├── N2095.neon │ ├── N2096.neon │ ├── N2097.neon │ ├── N2098.neon │ ├── N2099.neon │ ├── N2100.neon │ ├── N2101.neon │ ├── N2102.neon │ ├── N2103.neon │ ├── N2104.neon │ ├── N2105.neon │ ├── N2106.neon │ ├── N2107.neon │ ├── N2108.neon │ ├── N2109.neon │ ├── N2110.neon │ ├── N2111.neon │ ├── N2112.neon │ ├── N2113.neon │ ├── N2114.neon │ ├── N2115.neon │ ├── N2116.neon │ ├── N2117.neon │ ├── N2118.neon │ ├── N2119.neon │ ├── N2120.neon │ ├── N2121.neon │ ├── N2122.neon │ ├── N2123.neon │ ├── N2124.neon │ ├── N2125.neon │ ├── N2126.neon │ ├── N2127.neon │ ├── N2128.neon │ ├── N2129.neon │ ├── N2130.neon │ ├── N2131.neon │ ├── N2132.neon │ ├── N2133.neon │ ├── N2134.neon │ ├── N2135.neon │ ├── N2136.neon │ ├── N2137.neon │ ├── N2138.neon │ ├── N2139.neon │ ├── N2140.neon │ ├── N2141.neon │ ├── N2142.neon │ ├── N2143.neon │ ├── N2144.neon │ ├── N2145.neon │ ├── N2146.neon │ ├── N3001.neon │ ├── N3009.neon │ ├── N3010.neon │ ├── N3011.neon │ ├── N3012.neon │ ├── N3013.neon │ ├── N3014.neon │ ├── N3015.neon │ ├── N3016.neon │ ├── N3017.neon │ ├── N3018.neon │ ├── N3019.neon │ ├── N3020.neon │ ├── N3021.neon │ ├── N3022.neon │ ├── N3023.neon │ ├── N3024.neon │ ├── N3025.neon │ ├── N3026.neon │ ├── N3027.neon │ ├── N3028.neon │ ├── N3029.neon │ ├── N3030.neon │ ├── N3031.neon │ ├── N3032.neon │ ├── N3033.neon │ ├── N3034.neon │ ├── N3035.neon │ ├── N3036.neon │ ├── N3037.neon │ ├── N3038.neon │ ├── N3039.neon │ ├── N3040.neon │ ├── N3041.neon │ ├── N3042.neon │ ├── N3043.neon │ ├── N3044.neon │ ├── N3045.neon │ ├── N3046.neon │ ├── N3047.neon │ ├── N3048.neon │ ├── N3049.neon │ ├── N3050.neon │ ├── N3051.neon │ ├── N3052.neon │ ├── N3053.neon │ ├── N3054.neon │ ├── N3055.neon │ ├── N3056.neon │ ├── N3057.neon │ ├── N3058.neon │ ├── N3059.neon │ ├── N3060.neon │ ├── N3061.neon │ ├── N3062.neon │ ├── N3063.neon │ ├── N3064.neon │ ├── N3065.neon │ ├── N3067.neon │ ├── N3068.neon │ ├── N3069.neon │ ├── N3070.neon │ ├── N3072.neon │ ├── N3078.neon │ ├── N3079.neon │ ├── N3080.neon │ ├── N3081.neon │ ├── N3082.neon │ ├── N3083.neon │ ├── N3084.neon │ ├── N3085.neon │ ├── N3086.neon │ ├── N3087.neon │ ├── N3088.neon │ ├── N3089.neon │ ├── N3090.neon │ ├── N3091.neon │ ├── N3093.neon │ ├── N3094.neon │ ├── N3095.neon │ ├── N3096.neon │ ├── N3098.neon │ ├── N3099.neon │ ├── N3100.neon │ ├── N3101.neon │ ├── N3102.neon │ ├── N3103.neon │ ├── N3104.neon │ ├── N3105.neon │ ├── N3106.neon │ ├── N3107.neon │ ├── N3108.neon │ ├── N3109.neon │ ├── N3110.neon │ ├── N3111.neon │ ├── N3112.neon │ ├── N3113.neon │ ├── N3114.neon │ ├── N3115.neon │ ├── N3116.neon │ ├── N3118.neon │ ├── N3124.neon │ ├── N3126.neon │ ├── N3127.neon │ ├── N3128.neon │ ├── N3129.neon │ ├── N3131.neon │ ├── N3132.neon │ ├── N3134.neon │ ├── N3137.neon │ ├── N3138.neon │ ├── N3139.neon │ ├── N3140.neon │ ├── N3141.neon │ ├── N3142.neon │ ├── N3143.neon │ ├── N3144.neon │ ├── N3145.neon │ ├── N3146.neon │ ├── N3147.neon │ ├── N3148.neon │ ├── N3149.neon │ ├── N3150.neon │ ├── N3151.neon │ ├── N3152.neon │ ├── N3153.neon │ ├── N3154.neon │ ├── N3155.neon │ ├── N3156.neon │ ├── N3162.neon │ ├── N3163.neon │ ├── N3165.neon │ ├── N3166.neon │ ├── N3169.neon │ ├── N3170.neon │ ├── N3171.neon │ ├── N3172.neon │ ├── N3173.neon │ ├── N3174.neon │ ├── N3175.neon │ ├── N3176.neon │ ├── N3179.neon │ ├── N3180.neon │ ├── N3181.neon │ ├── N3182.neon │ ├── N3183.neon │ ├── N3184.neon │ ├── N3185.neon │ ├── N3186.neon │ ├── N3187.neon │ ├── N3188.neon │ ├── N3189.neon │ ├── N3190.neon │ ├── N3191.neon │ ├── N3192.neon │ ├── N3193.neon │ ├── N3194.neon │ ├── N3195.neon │ ├── N3196.neon │ ├── N3197.neon │ ├── N3198.neon │ ├── N3199.neon │ ├── N3200.neon │ ├── N3201.neon │ ├── N3202.neon │ ├── N3203.neon │ ├── N3205.neon │ ├── N3206.neon │ ├── N3207.neon │ ├── N3208.neon │ ├── N3209.neon │ ├── N3210.neon │ ├── N3211.neon │ ├── N3212.neon │ ├── N3213.neon │ ├── N3214.neon │ ├── N3215.neon │ ├── N3216.neon │ ├── N3217.neon │ ├── N3218.neon │ ├── N3219.neon │ ├── N3220.neon │ ├── N3221.neon │ ├── N3222.neon │ ├── N3223.neon │ ├── N3224.neon │ ├── N3225.neon │ ├── N3233.neon │ ├── N3234.neon │ ├── N3235.neon │ ├── N3236.neon │ ├── N3237.neon │ ├── N3238.neon │ ├── N3239.neon │ ├── N3240.neon │ ├── N3241.neon │ ├── N3242.neon │ ├── N3245.neon │ ├── N3247.neon │ ├── N3248.neon │ ├── N3249.neon │ ├── N3250.neon │ ├── N3251.neon │ ├── N3252.neon │ ├── N3253.neon │ ├── N3254.neon │ ├── N3255.neon │ ├── N3256.neon │ ├── N3257.neon │ ├── N3258.neon │ ├── N3259.neon │ ├── N3260.neon │ ├── N3261.neon │ ├── N3262.neon │ ├── N3263.neon │ ├── N3264.neon │ ├── N3265.neon │ ├── N3266.neon │ ├── N3267.neon │ ├── N3268.neon │ ├── N3269.neon │ ├── N3270.neon │ ├── N3271.neon │ ├── N3272.neon │ ├── N3273.neon │ ├── N3274.neon │ ├── N3275.neon │ ├── N3276.neon │ ├── N3277.neon │ ├── N3278.neon │ ├── N3279.neon │ ├── N3280.neon │ ├── N3281.neon │ ├── N3282.neon │ ├── N3283.neon │ ├── N3284.neon │ ├── N3285.neon │ ├── N3286.neon │ ├── N3287.neon │ ├── N3288.neon │ ├── N3289.neon │ ├── N3290.neon │ ├── N3291.neon │ ├── N3292.neon │ ├── N3293.neon │ ├── N3294.neon │ ├── N3295.neon │ ├── N3296.neon │ ├── N3297.neon │ ├── N3298.neon │ ├── N3299.neon │ ├── N3300.neon │ ├── N3301.neon │ ├── N3302.neon │ ├── N3303.neon │ ├── N3304.neon │ ├── N3305.neon │ ├── N3306.neon │ ├── N3307.neon │ ├── N3308.neon │ ├── N3309.neon │ ├── N3310.neon │ ├── N3311.neon │ ├── N3312.neon │ ├── N3313.neon │ ├── N3314.neon │ ├── N3315.neon │ ├── N3316.neon │ ├── N3317.neon │ ├── N3318.neon │ ├── N3319.neon │ ├── N3320.neon │ ├── N3321.neon │ ├── N3323.neon │ ├── N3324.neon │ ├── N3325.neon │ ├── N3326.neon │ ├── N3327.neon │ ├── N3328.neon │ ├── N3329.neon │ ├── N3330.neon │ ├── N3331.neon │ ├── N3332.neon │ ├── N3333.neon │ ├── N3334.neon │ ├── N3335.neon │ ├── N3336.neon │ ├── N3337.neon │ ├── N3338.neon │ ├── N3339.neon │ ├── N3340.neon │ ├── N3341.neon │ ├── N3342.neon │ ├── N4101.neon │ ├── N4201.neon │ ├── N4202.neon │ ├── N4203.neon │ ├── N4204.neon │ ├── N4205.neon │ ├── N4206.neon │ ├── N4207.neon │ ├── N4208.neon │ ├── N4209.neon │ ├── N4210.neon │ ├── N4211.neon │ ├── N4212.neon │ ├── N4213.neon │ ├── N4214.neon │ ├── N4215.neon │ ├── N4216.neon │ ├── N4217.neon │ ├── N4218.neon │ ├── N4219.neon │ ├── N4220.neon │ ├── N4221.neon │ ├── N4222.neon │ ├── N4223.neon │ ├── N4224.neon │ ├── N4225.neon │ ├── N4226.neon │ ├── N4227.neon │ ├── N4229.neon │ ├── N4301.neon │ ├── N4302.neon │ ├── N4303.neon │ ├── N4304.neon │ ├── N4305.neon │ ├── N4306.neon │ ├── N4307.neon │ ├── N4308.neon │ └── N4309.neon ├── exception-as.neon ├── exception-code.neon ├── exception-function.neon ├── exception-nested.neon ├── exception-opstack-depth.neon ├── exception-opstack.neon ├── exception-subexception.neon ├── exception-tostring.neon ├── exception-trace.neon ├── exception.neon ├── exit-for.neon ├── exit-while.neon ├── export-function-indent.neon ├── export-inline.neon ├── export.neon ├── expr.neon ├── file-exists.neon ├── file-filecopied.neon ├── file-filecopied1.neon ├── file-filecopied2.neon ├── file-filecopied3.neon ├── file-linelength.neon ├── file-test.neon ├── file-writebytes.neon ├── file-writelines.neon ├── for-bounds.neon ├── for-nested2.neon ├── for-scope.neon ├── for.neon ├── foreach-eval.neon ├── foreach-function.neon ├── foreach-literal-empty.neon ├── foreach-string.neon ├── foreach-value.neon ├── foreach.neon ├── format.neon ├── forward.neon ├── function-args.neon ├── function-defaultargs.neon ├── function-local.neon ├── function-namedargs.neon ├── function-pointer-nowhere.neon ├── function-pointer.neon ├── function.neon ├── gc-array.neon ├── gc-long-chain.neon ├── gc-two-pointers.neon ├── gc1.neon ├── gc2.neon ├── gc3.neon ├── hello.neon ├── if.neon ├── import-dup.neon ├── import-optional-missing.neon ├── import-optional.neon ├── import-string.neon ├── import.neon ├── in.neon ├── inc-reference.neon ├── inc.neon ├── indent.neon ├── index.neon ├── inline-construct-record.neon ├── inline-init-record.neon ├── inline-init.neon ├── inline-init4.neon ├── input.neon ├── intdiv.neon ├── integration │ ├── cal-test.neon │ ├── check-opcode-coverage.neon │ ├── debug-server.neon │ ├── os-test.neon │ └── process-test.neon ├── interface-compare.neon ├── interface-multiple.neon ├── interface-parameter-export.neon ├── interface-parameter-export2.neon ├── interface-parameter-import.neon ├── interface-parameter-import2.neon ├── interface.neon ├── intrinsic.neon ├── io-test.neon ├── json-test.neon ├── let.neon ├── lexer-raw.neon ├── lexer-unicode.neon ├── lexical-scope.neon ├── literal-array.neon ├── literal-empty.neon ├── literal-method.neon ├── literal-string.neon ├── literal.neon ├── local-clear.neon ├── logical.neon ├── logical2.neon ├── loop-label.neon ├── loop-return-loop.neon ├── loop-return-repeat-infinite.neon ├── loop-return-while-infinite.neon ├── loop.neon ├── main.neon ├── math-test.neon ├── methods-declare.neon ├── methods.neon ├── mkdir.neon ├── mmap-test.neon ├── module-alias.neon ├── module-alias2.neon ├── module-import-name-alias.neon ├── module-import-name-alias2.neon ├── module-import-name.neon ├── module-import-name2.neon ├── module-load-order-1.neon ├── module-load-order-2.neon ├── module-load-order-3.neon ├── module-load-order.neon ├── module.neon ├── module2.neon ├── modulo.neon ├── multiarray-test.neon ├── nested-substitution.neon ├── net-test-udp.neon ├── net-test.neon ├── new-init-module.neon ├── new-init.neon ├── next-for.neon ├── next-while.neon ├── number-ceil.neon ├── number-exception.neon ├── number-underscore.neon ├── object-choice.neon ├── object-isa-case.neon ├── object-isa-inconvertible.neon ├── object-isa.neon ├── object-native.neon ├── object-null.neon ├── object-null2.neon ├── object-operator.neon ├── object-record-default.neon ├── object-record.neon ├── object-subscript.neon ├── object.neon ├── opcode-coverage.neon ├── outer-issue192.neon ├── outer-parameter.neon ├── outer-tail.neon ├── outer.neon ├── outer2.neon ├── panic.neon ├── parameter-out-array.neon ├── parameter-out-string.neon ├── parameters-ignore.neon ├── parameters.neon ├── pointer-method.neon ├── pointer-nil.neon ├── pointer-print.neon ├── pointer-valid.neon ├── pointer.neon ├── pointer2.neon ├── pointer3.neon ├── pointer4.neon ├── pointer5.neon ├── pointer7.neon ├── pointer8.neon ├── posix-fork.neon ├── posix-symlink.neon ├── predeclare1.neon ├── predeclare2.neon ├── predeclare3.neon ├── predefined-generation.neon ├── print-object.neon ├── random-test.neon ├── record-empty.neon ├── record-init.neon ├── record-init2.neon ├── record-private.neon ├── recursion-limit.neon ├── recursion.neon ├── regex-test.neon ├── repeat-next.neon ├── repeat.neon ├── repl_assign.neon ├── repl_assign2.neon ├── repl_constant.neon ├── repl_enum_tostring.neon ├── repl_for.neon ├── repl_function.neon ├── repl_import.neon ├── return-case2.neon ├── return-if.neon ├── return-loop.neon ├── return-nothing.neon ├── return-try.neon ├── retval-index.neon ├── rtl.neon ├── runtime-test.neon ├── shebang.neon ├── shortcut.neon ├── sql-connect.neon ├── sql-cursor.neon ├── sql-embed.neon ├── sql-execute.neon ├── sql-query.neon ├── sql-whenever.neon ├── sqlite-test.neon ├── stack-overflow.neon ├── string-bytes.neon ├── string-escape.neon ├── string-format.neon ├── string-in.neon ├── string-index.neon ├── string-multiline.neon ├── string-slice.neon ├── string-splice.neon ├── string-test.neon ├── strings.neon ├── struct-test.neon ├── structure.neon ├── sys-exit.neon ├── tail-call.neon ├── testcase.neon ├── textio-random.neon ├── textio-seek.neon ├── textio-test.neon ├── time-stopwatch.neon ├── time-test.neon ├── todo │ ├── assert-empty-array.neon │ ├── dictionary-keys-tostring.neon │ ├── dictionary-tostring.neon │ ├── exception-stackerror.neon │ ├── export-recursive.neon │ ├── foreach-update.neon │ ├── forth-test.neon │ ├── in-array.neon │ ├── lisp-test.neon │ ├── module-import-name3.neon │ ├── parameter-inout-array.neon │ ├── parameter-inout-string.neon │ ├── return-case.neon │ ├── sudoku-test.neon │ ├── unicode-source.neon │ ├── unused-nested.neon │ ├── value-method3.neon │ └── xml-test.neon ├── tostring-quotes.neon ├── tostring.neon ├── try-expression.neon ├── type-compat.neon ├── type-nested.neon ├── type.neon ├── unary-plus.neon ├── unicode-char.neon ├── unicode-length.neon ├── unicode-string.neon ├── uninitialised-case.neon ├── uninitialised-function.neon ├── uninitialised-if-nested.neon ├── uninitialised-if.neon ├── uninitialised-loop.neon ├── uninitialised-out.neon ├── uninitialised-repeat.neon ├── uninitialised-try.neon ├── unused-declaration.neon ├── unused-parameter.neon ├── unused-repeat.neon ├── valid-pointer.neon ├── value-copy.neon ├── value-index.neon ├── value-method.neon ├── value-method2.neon ├── var-declaration.neon ├── var-reset.neon ├── var.neon ├── varargs-functionpointer.neon ├── varargs.neon ├── while-valid.neon └── while.neon ├── tests ├── compare_expected.py ├── fuzz_lexer.cpp ├── fuzz_parser.cpp ├── lexer-coverage.expected ├── lexer-coverage.neon ├── parser-coverage.expected ├── parser-coverage.neon ├── perf_lexer.cpp ├── test_lexer.cpp ├── test_number.cpp ├── test_number_to_string.cpp └── test_parser.cpp ├── tmp ├── .gitignore └── hello.bmp └── tools ├── coverage.neon ├── helium-exclude.txt ├── helium.py ├── imports.neon ├── ndb.neon └── neonbuild.neon /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.neonpath: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /.woodpecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/.woodpecker.yml -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/README.md -------------------------------------------------------------------------------- /antora-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/antora-playbook.yml -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/neonext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/common/neonext.h -------------------------------------------------------------------------------- /contrib/grammar/.gitignore: -------------------------------------------------------------------------------- 1 | neon.w3c.ebnf 2 | -------------------------------------------------------------------------------- /data/UnicodeData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/data/UnicodeData.txt -------------------------------------------------------------------------------- /data/regex-testinput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/data/regex-testinput1 -------------------------------------------------------------------------------- /data/regex-testoutput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/data/regex-testoutput1 -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/docs/antora.yml -------------------------------------------------------------------------------- /docs/modules/ROOT/pages/extensions.adoc: -------------------------------------------------------------------------------- 1 | = Extensions 2 | -------------------------------------------------------------------------------- /exec/cnex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/.gitignore -------------------------------------------------------------------------------- /exec/cnex/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/array.c -------------------------------------------------------------------------------- /exec/cnex/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/array.h -------------------------------------------------------------------------------- /exec/cnex/bytecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/bytecode.c -------------------------------------------------------------------------------- /exec/cnex/bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/bytecode.h -------------------------------------------------------------------------------- /exec/cnex/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/cJSON.c -------------------------------------------------------------------------------- /exec/cnex/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/cJSON.h -------------------------------------------------------------------------------- /exec/cnex/cell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/cell.c -------------------------------------------------------------------------------- /exec/cnex/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/cell.h -------------------------------------------------------------------------------- /exec/cnex/cnex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/cnex.c -------------------------------------------------------------------------------- /exec/cnex/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/dictionary.c -------------------------------------------------------------------------------- /exec/cnex/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/dictionary.h -------------------------------------------------------------------------------- /exec/cnex/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/enums.h -------------------------------------------------------------------------------- /exec/cnex/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/exclude.txt -------------------------------------------------------------------------------- /exec/cnex/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/exec.h -------------------------------------------------------------------------------- /exec/cnex/extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/extension.c -------------------------------------------------------------------------------- /exec/cnex/framestack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/framestack.c -------------------------------------------------------------------------------- /exec/cnex/framestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/framestack.h -------------------------------------------------------------------------------- /exec/cnex/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/gc.c -------------------------------------------------------------------------------- /exec/cnex/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/gc.h -------------------------------------------------------------------------------- /exec/cnex/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/global.c -------------------------------------------------------------------------------- /exec/cnex/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/global.h -------------------------------------------------------------------------------- /exec/cnex/httpserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/httpserver.c -------------------------------------------------------------------------------- /exec/cnex/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/httpserver.h -------------------------------------------------------------------------------- /exec/cnex/lib/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/binary.c -------------------------------------------------------------------------------- /exec/cnex/lib/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/binary.h -------------------------------------------------------------------------------- /exec/cnex/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/file.c -------------------------------------------------------------------------------- /exec/cnex/lib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/file.h -------------------------------------------------------------------------------- /exec/cnex/lib/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/io.c -------------------------------------------------------------------------------- /exec/cnex/lib/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/io.h -------------------------------------------------------------------------------- /exec/cnex/lib/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/math.c -------------------------------------------------------------------------------- /exec/cnex/lib/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/math.h -------------------------------------------------------------------------------- /exec/cnex/lib/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/mmap.h -------------------------------------------------------------------------------- /exec/cnex/lib/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/net.c -------------------------------------------------------------------------------- /exec/cnex/lib/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/net.h -------------------------------------------------------------------------------- /exec/cnex/lib/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/os.c -------------------------------------------------------------------------------- /exec/cnex/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/os.h -------------------------------------------------------------------------------- /exec/cnex/lib/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/posix.c -------------------------------------------------------------------------------- /exec/cnex/lib/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/posix.h -------------------------------------------------------------------------------- /exec/cnex/lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/random.c -------------------------------------------------------------------------------- /exec/cnex/lib/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/random.h -------------------------------------------------------------------------------- /exec/cnex/lib/sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/sqlite.c -------------------------------------------------------------------------------- /exec/cnex/lib/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/sqlite.h -------------------------------------------------------------------------------- /exec/cnex/lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/string.c -------------------------------------------------------------------------------- /exec/cnex/lib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/string.h -------------------------------------------------------------------------------- /exec/cnex/lib/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/struct.c -------------------------------------------------------------------------------- /exec/cnex/lib/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/struct.h -------------------------------------------------------------------------------- /exec/cnex/lib/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/sys.c -------------------------------------------------------------------------------- /exec/cnex/lib/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/sys.h -------------------------------------------------------------------------------- /exec/cnex/lib/textio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/textio.c -------------------------------------------------------------------------------- /exec/cnex/lib/textio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/textio.h -------------------------------------------------------------------------------- /exec/cnex/lib/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/lib/time.h -------------------------------------------------------------------------------- /exec/cnex/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/module.c -------------------------------------------------------------------------------- /exec/cnex/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/module.h -------------------------------------------------------------------------------- /exec/cnex/nstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/nstring.c -------------------------------------------------------------------------------- /exec/cnex/nstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/nstring.h -------------------------------------------------------------------------------- /exec/cnex/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/number.c -------------------------------------------------------------------------------- /exec/cnex/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/number.h -------------------------------------------------------------------------------- /exec/cnex/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/object.c -------------------------------------------------------------------------------- /exec/cnex/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/object.h -------------------------------------------------------------------------------- /exec/cnex/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/opcode.h -------------------------------------------------------------------------------- /exec/cnex/rtl_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/rtl_posix.c -------------------------------------------------------------------------------- /exec/cnex/rtl_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/rtl_win32.c -------------------------------------------------------------------------------- /exec/cnex/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/run_test.py -------------------------------------------------------------------------------- /exec/cnex/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/stack.c -------------------------------------------------------------------------------- /exec/cnex/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/stack.h -------------------------------------------------------------------------------- /exec/cnex/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/support.c -------------------------------------------------------------------------------- /exec/cnex/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/support.h -------------------------------------------------------------------------------- /exec/cnex/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/util.c -------------------------------------------------------------------------------- /exec/cnex/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/cnex/util.h -------------------------------------------------------------------------------- /exec/csnex/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/App.config -------------------------------------------------------------------------------- /exec/csnex/Builtin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Builtin.cs -------------------------------------------------------------------------------- /exec/csnex/Bytecode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Bytecode.cs -------------------------------------------------------------------------------- /exec/csnex/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Cell.cs -------------------------------------------------------------------------------- /exec/csnex/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Enums.cs -------------------------------------------------------------------------------- /exec/csnex/Exec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Exec.cs -------------------------------------------------------------------------------- /exec/csnex/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Global.cs -------------------------------------------------------------------------------- /exec/csnex/Number.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Number.cs -------------------------------------------------------------------------------- /exec/csnex/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Object.cs -------------------------------------------------------------------------------- /exec/csnex/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/Opcode.cs -------------------------------------------------------------------------------- /exec/csnex/csnex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/csnex/csnex.cs -------------------------------------------------------------------------------- /exec/gonex/gonex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/gonex/gonex.go -------------------------------------------------------------------------------- /exec/pynex/pynex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/pynex/pynex.py -------------------------------------------------------------------------------- /exec/rsnex/rsnex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/exec/rsnex/rsnex.rs -------------------------------------------------------------------------------- /external/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/external/zlib.cmake -------------------------------------------------------------------------------- /gh-pages/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /gh-pages/CNAME: -------------------------------------------------------------------------------- 1 | neon-lang.dev 2 | -------------------------------------------------------------------------------- /gh-pages/html/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /gh-pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/gh-pages/index.md -------------------------------------------------------------------------------- /gh-pages/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gh-pages/samples/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /lib/base.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/base.neon -------------------------------------------------------------------------------- /lib/bigint.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/bigint.neon -------------------------------------------------------------------------------- /lib/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/binary.cpp -------------------------------------------------------------------------------- /lib/binary.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/binary.neon -------------------------------------------------------------------------------- /lib/builtin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/builtin.cpp -------------------------------------------------------------------------------- /lib/builtin.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/builtin.neon -------------------------------------------------------------------------------- /lib/cformat.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/cformat.neon -------------------------------------------------------------------------------- /lib/complex.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/complex.neon -------------------------------------------------------------------------------- /lib/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/console.cpp -------------------------------------------------------------------------------- /lib/console.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/console.neon -------------------------------------------------------------------------------- /lib/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/datetime.cpp -------------------------------------------------------------------------------- /lib/datetime.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/datetime.neon -------------------------------------------------------------------------------- /lib/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/debugger.cpp -------------------------------------------------------------------------------- /lib/debugger.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/debugger.neon -------------------------------------------------------------------------------- /lib/dns.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/dns.neon -------------------------------------------------------------------------------- /lib/encoding.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/encoding.neon -------------------------------------------------------------------------------- /lib/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/file.cpp -------------------------------------------------------------------------------- /lib/file.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/file.neon -------------------------------------------------------------------------------- /lib/file_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/file_posix.cpp -------------------------------------------------------------------------------- /lib/file_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/file_win32.cpp -------------------------------------------------------------------------------- /lib/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/global.cpp -------------------------------------------------------------------------------- /lib/global.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/global.neon -------------------------------------------------------------------------------- /lib/html/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /lib/http.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/http.neon -------------------------------------------------------------------------------- /lib/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/io.cpp -------------------------------------------------------------------------------- /lib/io.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/io.neon -------------------------------------------------------------------------------- /lib/json.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/json.neon -------------------------------------------------------------------------------- /lib/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/math.cpp -------------------------------------------------------------------------------- /lib/math.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/math.neon -------------------------------------------------------------------------------- /lib/mmap.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/mmap.neon -------------------------------------------------------------------------------- /lib/mmap_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/mmap_posix.cpp -------------------------------------------------------------------------------- /lib/mmap_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/mmap_win32.cpp -------------------------------------------------------------------------------- /lib/multiarray.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/multiarray.neon -------------------------------------------------------------------------------- /lib/nd.proj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /lib/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/net.cpp -------------------------------------------------------------------------------- /lib/net.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/net.neon -------------------------------------------------------------------------------- /lib/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/os.cpp -------------------------------------------------------------------------------- /lib/os.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/os.neon -------------------------------------------------------------------------------- /lib/os_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/os_posix.cpp -------------------------------------------------------------------------------- /lib/os_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/os_win32.cpp -------------------------------------------------------------------------------- /lib/posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/posix.cpp -------------------------------------------------------------------------------- /lib/posix.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/posix.neon -------------------------------------------------------------------------------- /lib/process.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/process.neon -------------------------------------------------------------------------------- /lib/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/random.cpp -------------------------------------------------------------------------------- /lib/random.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/random.neon -------------------------------------------------------------------------------- /lib/regex.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/regex.neon -------------------------------------------------------------------------------- /lib/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/runtime.cpp -------------------------------------------------------------------------------- /lib/runtime.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/runtime.neon -------------------------------------------------------------------------------- /lib/sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/sqlite.cpp -------------------------------------------------------------------------------- /lib/sqlite.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/sqlite.neon -------------------------------------------------------------------------------- /lib/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/string.cpp -------------------------------------------------------------------------------- /lib/string.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/string.neon -------------------------------------------------------------------------------- /lib/struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/struct.cpp -------------------------------------------------------------------------------- /lib/struct.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/struct.neon -------------------------------------------------------------------------------- /lib/sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/sys.cpp -------------------------------------------------------------------------------- /lib/sys.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/sys.neon -------------------------------------------------------------------------------- /lib/textio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/textio.cpp -------------------------------------------------------------------------------- /lib/textio.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/textio.neon -------------------------------------------------------------------------------- /lib/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/time.cpp -------------------------------------------------------------------------------- /lib/time.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/time.neon -------------------------------------------------------------------------------- /lib/time_darwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/time_darwin.cpp -------------------------------------------------------------------------------- /lib/time_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/time_linux.cpp -------------------------------------------------------------------------------- /lib/time_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/time_posix.cpp -------------------------------------------------------------------------------- /lib/time_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/time_win32.cpp -------------------------------------------------------------------------------- /lib/xml.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/lib/xml.neon -------------------------------------------------------------------------------- /neon/lexer.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/neon/lexer.neon -------------------------------------------------------------------------------- /neon/parser.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/neon/parser.neon -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/package.json -------------------------------------------------------------------------------- /rtl/c/neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/rtl/c/neon.c -------------------------------------------------------------------------------- /rtl/c/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/rtl/c/neon.h -------------------------------------------------------------------------------- /rtl/cli/Builtin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/rtl/cli/Builtin.cs -------------------------------------------------------------------------------- /rtl/cli/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/rtl/cli/Global.cs -------------------------------------------------------------------------------- /rtl/cpp/neon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/rtl/cpp/neon.cpp -------------------------------------------------------------------------------- /rtl/cpp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/rtl/cpp/neon.h -------------------------------------------------------------------------------- /rtl/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/rtl/js/global.js -------------------------------------------------------------------------------- /rtl/jvm/neon/Datetime.java: -------------------------------------------------------------------------------- 1 | package neon; 2 | 3 | public class Datetime { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /rtl/jvm/neon/Io.java: -------------------------------------------------------------------------------- 1 | package neon; 2 | 3 | public class Io { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /samples/nd.proj/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /samples/samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/samples/samples.txt -------------------------------------------------------------------------------- /scripts/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/extract.py -------------------------------------------------------------------------------- /scripts/run_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/run_c.py -------------------------------------------------------------------------------- /scripts/run_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/run_cli.py -------------------------------------------------------------------------------- /scripts/run_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/run_cpp.py -------------------------------------------------------------------------------- /scripts/run_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/run_js.py -------------------------------------------------------------------------------- /scripts/run_jvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/run_jvm.py -------------------------------------------------------------------------------- /scripts/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/run_test.py -------------------------------------------------------------------------------- /scripts/test_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/test_doc.py -------------------------------------------------------------------------------- /scripts/update_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/scripts/update_docs -------------------------------------------------------------------------------- /src/analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/analyzer.cpp -------------------------------------------------------------------------------- /src/analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/analyzer.h -------------------------------------------------------------------------------- /src/ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/ast.cpp -------------------------------------------------------------------------------- /src/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/ast.h -------------------------------------------------------------------------------- /src/bundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/bundle.cpp -------------------------------------------------------------------------------- /src/bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/bundle.h -------------------------------------------------------------------------------- /src/bytecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/bytecode.cpp -------------------------------------------------------------------------------- /src/bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/bytecode.h -------------------------------------------------------------------------------- /src/cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/cell.cpp -------------------------------------------------------------------------------- /src/cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/cell.h -------------------------------------------------------------------------------- /src/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/compiler.cpp -------------------------------------------------------------------------------- /src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/compiler.h -------------------------------------------------------------------------------- /src/compiler_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/compiler_c.cpp -------------------------------------------------------------------------------- /src/compiler_js.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/compiler_js.cpp -------------------------------------------------------------------------------- /src/debuginfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/debuginfo.cpp -------------------------------------------------------------------------------- /src/debuginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/debuginfo.h -------------------------------------------------------------------------------- /src/disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/disassembler.h -------------------------------------------------------------------------------- /src/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/exec.cpp -------------------------------------------------------------------------------- /src/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/exec.h -------------------------------------------------------------------------------- /src/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/httpserver.cpp -------------------------------------------------------------------------------- /src/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/httpserver.h -------------------------------------------------------------------------------- /src/intrinsic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/intrinsic.cpp -------------------------------------------------------------------------------- /src/intrinsic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/intrinsic.h -------------------------------------------------------------------------------- /src/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/lexer.cpp -------------------------------------------------------------------------------- /src/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/lexer.h -------------------------------------------------------------------------------- /src/neon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/neon.cpp -------------------------------------------------------------------------------- /src/neonbind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/neonbind.cpp -------------------------------------------------------------------------------- /src/neonc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/neonc.cpp -------------------------------------------------------------------------------- /src/neondis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/neondis.cpp -------------------------------------------------------------------------------- /src/neonstub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/neonstub.cpp -------------------------------------------------------------------------------- /src/neonx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/neonx.cpp -------------------------------------------------------------------------------- /src/number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/number.cpp -------------------------------------------------------------------------------- /src/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/number.h -------------------------------------------------------------------------------- /src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/object.cpp -------------------------------------------------------------------------------- /src/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/object.h -------------------------------------------------------------------------------- /src/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/opcode.h -------------------------------------------------------------------------------- /src/opstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/opstack.h -------------------------------------------------------------------------------- /src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/parser.cpp -------------------------------------------------------------------------------- /src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/parser.h -------------------------------------------------------------------------------- /src/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/pt.h -------------------------------------------------------------------------------- /src/pt_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/pt_dump.cpp -------------------------------------------------------------------------------- /src/pt_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/pt_dump.h -------------------------------------------------------------------------------- /src/repl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/repl.cpp -------------------------------------------------------------------------------- /src/repl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/repl.h -------------------------------------------------------------------------------- /src/rtl_compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/rtl_compile.cpp -------------------------------------------------------------------------------- /src/rtl_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/rtl_compile.h -------------------------------------------------------------------------------- /src/rtl_exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/rtl_exec.cpp -------------------------------------------------------------------------------- /src/rtl_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/rtl_exec.h -------------------------------------------------------------------------------- /src/rtl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/rtl_platform.h -------------------------------------------------------------------------------- /src/rtl_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/rtl_posix.cpp -------------------------------------------------------------------------------- /src/rtl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/rtl_win32.cpp -------------------------------------------------------------------------------- /src/socketx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/socketx.h -------------------------------------------------------------------------------- /src/sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/sql.cpp -------------------------------------------------------------------------------- /src/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/sql.h -------------------------------------------------------------------------------- /src/support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/support.cpp -------------------------------------------------------------------------------- /src/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/support.h -------------------------------------------------------------------------------- /src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/token.h -------------------------------------------------------------------------------- /src/utf8string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/utf8string.h -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/util.h -------------------------------------------------------------------------------- /src/version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/src/version.cpp.in -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- 1 | extern const char *GIT_DESCRIBE; 2 | -------------------------------------------------------------------------------- /t/42.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/42.neon -------------------------------------------------------------------------------- /t/arithmetic.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/arithmetic.neon -------------------------------------------------------------------------------- /t/arithmetic2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/arithmetic2.neon -------------------------------------------------------------------------------- /t/array-append.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-append.neon -------------------------------------------------------------------------------- /t/array-concat.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-concat.neon -------------------------------------------------------------------------------- /t/array-extend.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-extend.neon -------------------------------------------------------------------------------- /t/array-find.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-find.neon -------------------------------------------------------------------------------- /t/array-index.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-index.neon -------------------------------------------------------------------------------- /t/array-remove.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-remove.neon -------------------------------------------------------------------------------- /t/array-resize.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-resize.neon -------------------------------------------------------------------------------- /t/array-slice.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-slice.neon -------------------------------------------------------------------------------- /t/array-sparse.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array-sparse.neon -------------------------------------------------------------------------------- /t/array.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array.neon -------------------------------------------------------------------------------- /t/array2d.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/array2d.neon -------------------------------------------------------------------------------- /t/arraysize.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/arraysize.neon -------------------------------------------------------------------------------- /t/assert-enum.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/assert-enum.neon -------------------------------------------------------------------------------- /t/assert-fail.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/assert-fail.neon -------------------------------------------------------------------------------- /t/assert-fail2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/assert-fail2.neon -------------------------------------------------------------------------------- /t/assert.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/assert.neon -------------------------------------------------------------------------------- /t/assign.neon: -------------------------------------------------------------------------------- 1 | VAR a: Number 2 | a := 5 3 | -------------------------------------------------------------------------------- /t/assignment.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/assignment.neon -------------------------------------------------------------------------------- /t/base-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/base-test.neon -------------------------------------------------------------------------------- /t/bases.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/bases.neon -------------------------------------------------------------------------------- /t/bigint-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/bigint-test.neon -------------------------------------------------------------------------------- /t/binary-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/binary-test.neon -------------------------------------------------------------------------------- /t/boolean.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/boolean.neon -------------------------------------------------------------------------------- /t/bytes-embed.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/bytes-embed.neon -------------------------------------------------------------------------------- /t/bytes-index.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/bytes-index.neon -------------------------------------------------------------------------------- /t/bytes-slice.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/bytes-slice.neon -------------------------------------------------------------------------------- /t/bytes-splice.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/bytes-splice.neon -------------------------------------------------------------------------------- /t/bytes.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/bytes.neon -------------------------------------------------------------------------------- /t/case-jumptbl.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/case-jumptbl.neon -------------------------------------------------------------------------------- /t/case-overlap.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/case-overlap.neon -------------------------------------------------------------------------------- /t/case.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/case.neon -------------------------------------------------------------------------------- /t/case3.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/case3.neon -------------------------------------------------------------------------------- /t/cformat-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/cformat-test.neon -------------------------------------------------------------------------------- /t/check-if.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/check-if.neon -------------------------------------------------------------------------------- /t/check-valid.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/check-valid.neon -------------------------------------------------------------------------------- /t/check.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/check.neon -------------------------------------------------------------------------------- /t/choice.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/choice.neon -------------------------------------------------------------------------------- /t/class-empty.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/class-empty.neon -------------------------------------------------------------------------------- /t/cmdline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/cmdline.neon -------------------------------------------------------------------------------- /t/comments.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/comments.neon -------------------------------------------------------------------------------- /t/comparison.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/comparison.neon -------------------------------------------------------------------------------- /t/comparison2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/comparison2.neon -------------------------------------------------------------------------------- /t/compile-only/assign-nothing.neon: -------------------------------------------------------------------------------- 1 | _ := print("hello") 2 | 3 | --! type mismatch 4 | -------------------------------------------------------------------------------- /t/compile-only/assign2.neon: -------------------------------------------------------------------------------- 1 | VAR a: Number := 0 2 | a = 5 3 | 4 | --! ':=' expected 5 | -------------------------------------------------------------------------------- /t/compile-only/base-invalid.neon: -------------------------------------------------------------------------------- 1 | VAR a: Number 2 | a := 0z0 3 | 4 | --! invalid base 5 | -------------------------------------------------------------------------------- /t/compile-only/base-invalidchar.neon: -------------------------------------------------------------------------------- 1 | print(str(0z0)) 2 | 3 | --! invalid base character 4 | -------------------------------------------------------------------------------- /t/compile-only/global-shadow.neon: -------------------------------------------------------------------------------- 1 | VAR print: Number 2 | 3 | --! duplicate identifier 4 | -------------------------------------------------------------------------------- /t/compile-only/type_mismatch.neon: -------------------------------------------------------------------------------- 1 | _ := str("42") 2 | 3 | --! type mismatch 4 | -------------------------------------------------------------------------------- /t/compile-only/var-declaration2.neon: -------------------------------------------------------------------------------- 1 | a := 5 2 | VAR a: Number 3 | 4 | --! name not found 5 | -------------------------------------------------------------------------------- /t/complex-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/complex-test.neon -------------------------------------------------------------------------------- /t/concat-bytes.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/concat-bytes.neon -------------------------------------------------------------------------------- /t/concat.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/concat.neon -------------------------------------------------------------------------------- /t/conditional.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/conditional.neon -------------------------------------------------------------------------------- /t/const-chain.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/const-chain.neon -------------------------------------------------------------------------------- /t/const-string.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/const-string.neon -------------------------------------------------------------------------------- /t/const.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/const.neon -------------------------------------------------------------------------------- /t/debug.neon: -------------------------------------------------------------------------------- 1 | LET x: Number := 5 2 | DEBUG "test", x 3 | -------------------------------------------------------------------------------- /t/decimal.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/decimal.neon -------------------------------------------------------------------------------- /t/dictionary.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/dictionary.neon -------------------------------------------------------------------------------- /t/dns-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/dns-test.neon -------------------------------------------------------------------------------- /t/empty.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/enum.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/enum.neon -------------------------------------------------------------------------------- /t/enum3.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/enum3.neon -------------------------------------------------------------------------------- /t/equality.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/equality.neon -------------------------------------------------------------------------------- /t/errors/N1000.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1000.neon -------------------------------------------------------------------------------- /t/errors/N1003.neon: -------------------------------------------------------------------------------- 1 | 0z0 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1004.neon: -------------------------------------------------------------------------------- 1 | 0x3.14159 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1005.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1005.neon -------------------------------------------------------------------------------- /t/errors/N1006.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1006.neon -------------------------------------------------------------------------------- /t/errors/N1007.neon: -------------------------------------------------------------------------------- 1 | ~ 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1008.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1008.neon -------------------------------------------------------------------------------- /t/errors/N1009.neon: -------------------------------------------------------------------------------- 1 | "\a" 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1010.neon: -------------------------------------------------------------------------------- 1 | "foo 2 | -------------------------------------------------------------------------------- /t/errors/N1011.neon: -------------------------------------------------------------------------------- 1 | "foo\ 2 | -------------------------------------------------------------------------------- /t/errors/N1012.neon: -------------------------------------------------------------------------------- 1 | "foo\u 2 | -------------------------------------------------------------------------------- /t/errors/N1013.neon: -------------------------------------------------------------------------------- 1 | "\uxyzt" 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1014.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1014.neon -------------------------------------------------------------------------------- /t/errors/N1015.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1015.neon -------------------------------------------------------------------------------- /t/errors/N1016.neon: -------------------------------------------------------------------------------- 1 | -- This file does not end with a newline. 2 | 3 | @ -------------------------------------------------------------------------------- /t/errors/N1017.neon: -------------------------------------------------------------------------------- 1 | @" 2 | -------------------------------------------------------------------------------- /t/errors/N1018.neon: -------------------------------------------------------------------------------- 1 | @ 2 | -------------------------------------------------------------------------------- /t/errors/N1019.neon: -------------------------------------------------------------------------------- 1 | @@ 2 | -------------------------------------------------------------------------------- /t/errors/N1020.neon: -------------------------------------------------------------------------------- 1 | @@" 2 | -------------------------------------------------------------------------------- /t/errors/N1021.neon: -------------------------------------------------------------------------------- 1 | print("foo 2 | ") 3 | -------------------------------------------------------------------------------- /t/errors/N1022.neon: -------------------------------------------------------------------------------- 1 | print(@"foo 2 | ") 3 | -------------------------------------------------------------------------------- /t/errors/N1024.neon: -------------------------------------------------------------------------------- 1 | foo__bar 2 | -------------------------------------------------------------------------------- /t/errors/N1025.neon: -------------------------------------------------------------------------------- 1 | _a 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1026.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1026.neon -------------------------------------------------------------------------------- /t/errors/N1027.neon: -------------------------------------------------------------------------------- 1 | "\u{unknown}" 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1028.neon: -------------------------------------------------------------------------------- 1 | 5. 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N1029.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N1029.neon -------------------------------------------------------------------------------- /t/errors/N2002.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2002.neon -------------------------------------------------------------------------------- /t/errors/N2003.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2003.neon -------------------------------------------------------------------------------- /t/errors/N2004.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2004.neon -------------------------------------------------------------------------------- /t/errors/N2005.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2005.neon -------------------------------------------------------------------------------- /t/errors/N2006.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2006.neon -------------------------------------------------------------------------------- /t/errors/N2007.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2007.neon -------------------------------------------------------------------------------- /t/errors/N2008.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2008.neon -------------------------------------------------------------------------------- /t/errors/N2009.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2009.neon -------------------------------------------------------------------------------- /t/errors/N2010.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2010.neon -------------------------------------------------------------------------------- /t/errors/N2012.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2012.neon -------------------------------------------------------------------------------- /t/errors/N2013.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2013.neon -------------------------------------------------------------------------------- /t/errors/N2014.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2014.neon -------------------------------------------------------------------------------- /t/errors/N2015.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2015.neon -------------------------------------------------------------------------------- /t/errors/N2016.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2016.neon -------------------------------------------------------------------------------- /t/errors/N2017.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2017.neon -------------------------------------------------------------------------------- /t/errors/N2018.neon: -------------------------------------------------------------------------------- 1 | VAR 1 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N2019.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2019.neon -------------------------------------------------------------------------------- /t/errors/N2020.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2020.neon -------------------------------------------------------------------------------- /t/errors/N2021.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2021.neon -------------------------------------------------------------------------------- /t/errors/N2022.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2022.neon -------------------------------------------------------------------------------- /t/errors/N2023.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2023.neon -------------------------------------------------------------------------------- /t/errors/N2024.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2024.neon -------------------------------------------------------------------------------- /t/errors/N2025.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2025.neon -------------------------------------------------------------------------------- /t/errors/N2026.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2026.neon -------------------------------------------------------------------------------- /t/errors/N2027.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2027.neon -------------------------------------------------------------------------------- /t/errors/N2028.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2028.neon -------------------------------------------------------------------------------- /t/errors/N2029.neon: -------------------------------------------------------------------------------- 1 | WHILE (TRUE) DO 2 | print("doing...") 3 | --$ 4 | -------------------------------------------------------------------------------- /t/errors/N2030.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2030.neon -------------------------------------------------------------------------------- /t/errors/N2031.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2031.neon -------------------------------------------------------------------------------- /t/errors/N2032.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2032.neon -------------------------------------------------------------------------------- /t/errors/N2033.neon: -------------------------------------------------------------------------------- 1 | 1 := 2 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N2034.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2034.neon -------------------------------------------------------------------------------- /t/errors/N2035.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2035.neon -------------------------------------------------------------------------------- /t/errors/N2036.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2036.neon -------------------------------------------------------------------------------- /t/errors/N2037.neon: -------------------------------------------------------------------------------- 1 | IF TRUE THEN 2 | print("true!") 3 | END FUNCTION 4 | --< 5 | -------------------------------------------------------------------------------- /t/errors/N2038.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2038.neon -------------------------------------------------------------------------------- /t/errors/N2039.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2039.neon -------------------------------------------------------------------------------- /t/errors/N2040.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2040.neon -------------------------------------------------------------------------------- /t/errors/N2041.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2041.neon -------------------------------------------------------------------------------- /t/errors/N2042.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2042.neon -------------------------------------------------------------------------------- /t/errors/N2043.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2043.neon -------------------------------------------------------------------------------- /t/errors/N2044.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2044.neon -------------------------------------------------------------------------------- /t/errors/N2048.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2048.neon -------------------------------------------------------------------------------- /t/errors/N2052.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2052.neon -------------------------------------------------------------------------------- /t/errors/N2053.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2053.neon -------------------------------------------------------------------------------- /t/errors/N2054.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2054.neon -------------------------------------------------------------------------------- /t/errors/N2055.neon: -------------------------------------------------------------------------------- 1 | LOOP 2 | --$ 3 | -------------------------------------------------------------------------------- /t/errors/N2056.neon: -------------------------------------------------------------------------------- 1 | LOOP 2 | END WHILE 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N2057.neon: -------------------------------------------------------------------------------- 1 | REPEAT 2 | --$ 3 | -------------------------------------------------------------------------------- /t/errors/N2058.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2058.neon -------------------------------------------------------------------------------- /t/errors/N2059.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2059.neon -------------------------------------------------------------------------------- /t/errors/N2060.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2060.neon -------------------------------------------------------------------------------- /t/errors/N2061.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2061.neon -------------------------------------------------------------------------------- /t/errors/N2062.neon: -------------------------------------------------------------------------------- 1 | TRY 2 | --$ 3 | -------------------------------------------------------------------------------- /t/errors/N2063.neon: -------------------------------------------------------------------------------- 1 | TRY 2 | END IF 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N2064.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2064.neon -------------------------------------------------------------------------------- /t/errors/N2065.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2065.neon -------------------------------------------------------------------------------- /t/errors/N2066.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2066.neon -------------------------------------------------------------------------------- /t/errors/N2067.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2067.neon -------------------------------------------------------------------------------- /t/errors/N2068.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2068.neon -------------------------------------------------------------------------------- /t/errors/N2069.neon: -------------------------------------------------------------------------------- 1 | LET 1 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N2071.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2071.neon -------------------------------------------------------------------------------- /t/errors/N2072.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2072.neon -------------------------------------------------------------------------------- /t/errors/N2073.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2073.neon -------------------------------------------------------------------------------- /t/errors/N2074.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2074.neon -------------------------------------------------------------------------------- /t/errors/N2075.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2075.neon -------------------------------------------------------------------------------- /t/errors/N2078.neon: -------------------------------------------------------------------------------- 1 | f(a == b) 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N2079.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2079.neon -------------------------------------------------------------------------------- /t/errors/N2080.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2080.neon -------------------------------------------------------------------------------- /t/errors/N2081.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2081.neon -------------------------------------------------------------------------------- /t/errors/N2082.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2082.neon -------------------------------------------------------------------------------- /t/errors/N2083.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2083.neon -------------------------------------------------------------------------------- /t/errors/N2084.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2084.neon -------------------------------------------------------------------------------- /t/errors/N2085.neon: -------------------------------------------------------------------------------- 1 | FOREACH x IN a DO 2 | --$ 3 | -------------------------------------------------------------------------------- /t/errors/N2086.neon: -------------------------------------------------------------------------------- 1 | FOREACH x IN a DO 2 | END FOR 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N2087.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2087.neon -------------------------------------------------------------------------------- /t/errors/N2089.neon: -------------------------------------------------------------------------------- 1 | IF TRUE THEN 2 | print("hi") 3 | --<1 4 | END IF 5 | -------------------------------------------------------------------------------- /t/errors/N2090.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2090.neon -------------------------------------------------------------------------------- /t/errors/N2091.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2091.neon -------------------------------------------------------------------------------- /t/errors/N2092.neon: -------------------------------------------------------------------------------- 1 | BEGIN MAIN 2 | --$ 3 | -------------------------------------------------------------------------------- /t/errors/N2093.neon: -------------------------------------------------------------------------------- 1 | BEGIN MAIN 2 | END FUNCTION 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N2094.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2094.neon -------------------------------------------------------------------------------- /t/errors/N2095.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2095.neon -------------------------------------------------------------------------------- /t/errors/N2096.neon: -------------------------------------------------------------------------------- 1 | correct horse battery staple 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N2097.neon: -------------------------------------------------------------------------------- 1 | _ IN 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N2098.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2098.neon -------------------------------------------------------------------------------- /t/errors/N2099.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2099.neon -------------------------------------------------------------------------------- /t/errors/N2100.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2100.neon -------------------------------------------------------------------------------- /t/errors/N2101.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2101.neon -------------------------------------------------------------------------------- /t/errors/N2102.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2102.neon -------------------------------------------------------------------------------- /t/errors/N2103.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2103.neon -------------------------------------------------------------------------------- /t/errors/N2104.neon: -------------------------------------------------------------------------------- 1 | CHECK x > 0 ELSE 2 | --$ 3 | -------------------------------------------------------------------------------- /t/errors/N2105.neon: -------------------------------------------------------------------------------- 1 | CHECK x > 0 ELSE 2 | END IF 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N2106.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2106.neon -------------------------------------------------------------------------------- /t/errors/N2107.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2107.neon -------------------------------------------------------------------------------- /t/errors/N2108.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2108.neon -------------------------------------------------------------------------------- /t/errors/N2109.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2109.neon -------------------------------------------------------------------------------- /t/errors/N2110.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2110.neon -------------------------------------------------------------------------------- /t/errors/N2111.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2111.neon -------------------------------------------------------------------------------- /t/errors/N2112.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2112.neon -------------------------------------------------------------------------------- /t/errors/N2113.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2113.neon -------------------------------------------------------------------------------- /t/errors/N2114.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2114.neon -------------------------------------------------------------------------------- /t/errors/N2115.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2115.neon -------------------------------------------------------------------------------- /t/errors/N2116.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2116.neon -------------------------------------------------------------------------------- /t/errors/N2117.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2117.neon -------------------------------------------------------------------------------- /t/errors/N2118.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2118.neon -------------------------------------------------------------------------------- /t/errors/N2119.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2119.neon -------------------------------------------------------------------------------- /t/errors/N2120.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2120.neon -------------------------------------------------------------------------------- /t/errors/N2121.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2121.neon -------------------------------------------------------------------------------- /t/errors/N2122.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2122.neon -------------------------------------------------------------------------------- /t/errors/N2123.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2123.neon -------------------------------------------------------------------------------- /t/errors/N2124.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2124.neon -------------------------------------------------------------------------------- /t/errors/N2125.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2125.neon -------------------------------------------------------------------------------- /t/errors/N2126.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2126.neon -------------------------------------------------------------------------------- /t/errors/N2127.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2127.neon -------------------------------------------------------------------------------- /t/errors/N2128.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2128.neon -------------------------------------------------------------------------------- /t/errors/N2129.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2129.neon -------------------------------------------------------------------------------- /t/errors/N2130.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2130.neon -------------------------------------------------------------------------------- /t/errors/N2131.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2131.neon -------------------------------------------------------------------------------- /t/errors/N2132.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2132.neon -------------------------------------------------------------------------------- /t/errors/N2133.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2133.neon -------------------------------------------------------------------------------- /t/errors/N2134.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2134.neon -------------------------------------------------------------------------------- /t/errors/N2135.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2135.neon -------------------------------------------------------------------------------- /t/errors/N2136.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2136.neon -------------------------------------------------------------------------------- /t/errors/N2137.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2137.neon -------------------------------------------------------------------------------- /t/errors/N2138.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2138.neon -------------------------------------------------------------------------------- /t/errors/N2139.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2139.neon -------------------------------------------------------------------------------- /t/errors/N2140.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2140.neon -------------------------------------------------------------------------------- /t/errors/N2141.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2141.neon -------------------------------------------------------------------------------- /t/errors/N2142.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2142.neon -------------------------------------------------------------------------------- /t/errors/N2143.neon: -------------------------------------------------------------------------------- 1 | VAR p: POINTER 2 | print("hello") 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N2144.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2144.neon -------------------------------------------------------------------------------- /t/errors/N2145.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2145.neon -------------------------------------------------------------------------------- /t/errors/N2146.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N2146.neon -------------------------------------------------------------------------------- /t/errors/N3001.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3001.neon -------------------------------------------------------------------------------- /t/errors/N3009.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3009.neon -------------------------------------------------------------------------------- /t/errors/N3010.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3010.neon -------------------------------------------------------------------------------- /t/errors/N3011.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3011.neon -------------------------------------------------------------------------------- /t/errors/N3012.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3012.neon -------------------------------------------------------------------------------- /t/errors/N3013.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3013.neon -------------------------------------------------------------------------------- /t/errors/N3014.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3014.neon -------------------------------------------------------------------------------- /t/errors/N3015.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3015.neon -------------------------------------------------------------------------------- /t/errors/N3016.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3016.neon -------------------------------------------------------------------------------- /t/errors/N3017.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3017.neon -------------------------------------------------------------------------------- /t/errors/N3018.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3018.neon -------------------------------------------------------------------------------- /t/errors/N3019.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3019.neon -------------------------------------------------------------------------------- /t/errors/N3020.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3020.neon -------------------------------------------------------------------------------- /t/errors/N3021.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3021.neon -------------------------------------------------------------------------------- /t/errors/N3022.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3022.neon -------------------------------------------------------------------------------- /t/errors/N3023.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3023.neon -------------------------------------------------------------------------------- /t/errors/N3024.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3024.neon -------------------------------------------------------------------------------- /t/errors/N3025.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3025.neon -------------------------------------------------------------------------------- /t/errors/N3026.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3026.neon -------------------------------------------------------------------------------- /t/errors/N3027.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3027.neon -------------------------------------------------------------------------------- /t/errors/N3028.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3028.neon -------------------------------------------------------------------------------- /t/errors/N3029.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3029.neon -------------------------------------------------------------------------------- /t/errors/N3030.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3030.neon -------------------------------------------------------------------------------- /t/errors/N3031.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3031.neon -------------------------------------------------------------------------------- /t/errors/N3032.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3032.neon -------------------------------------------------------------------------------- /t/errors/N3033.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3033.neon -------------------------------------------------------------------------------- /t/errors/N3034.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3034.neon -------------------------------------------------------------------------------- /t/errors/N3035.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3035.neon -------------------------------------------------------------------------------- /t/errors/N3036.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3036.neon -------------------------------------------------------------------------------- /t/errors/N3037.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3037.neon -------------------------------------------------------------------------------- /t/errors/N3038.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3038.neon -------------------------------------------------------------------------------- /t/errors/N3039.neon: -------------------------------------------------------------------------------- 1 | a:= 1 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N3040.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3040.neon -------------------------------------------------------------------------------- /t/errors/N3041.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3041.neon -------------------------------------------------------------------------------- /t/errors/N3042.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3042.neon -------------------------------------------------------------------------------- /t/errors/N3043.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3043.neon -------------------------------------------------------------------------------- /t/errors/N3044.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3044.neon -------------------------------------------------------------------------------- /t/errors/N3045.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3045.neon -------------------------------------------------------------------------------- /t/errors/N3046.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3046.neon -------------------------------------------------------------------------------- /t/errors/N3047.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3047.neon -------------------------------------------------------------------------------- /t/errors/N3048.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3048.neon -------------------------------------------------------------------------------- /t/errors/N3049.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3049.neon -------------------------------------------------------------------------------- /t/errors/N3050.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3050.neon -------------------------------------------------------------------------------- /t/errors/N3051.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3051.neon -------------------------------------------------------------------------------- /t/errors/N3052.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3052.neon -------------------------------------------------------------------------------- /t/errors/N3053.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3053.neon -------------------------------------------------------------------------------- /t/errors/N3054.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3054.neon -------------------------------------------------------------------------------- /t/errors/N3055.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3055.neon -------------------------------------------------------------------------------- /t/errors/N3056.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3056.neon -------------------------------------------------------------------------------- /t/errors/N3057.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3057.neon -------------------------------------------------------------------------------- /t/errors/N3058.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3058.neon -------------------------------------------------------------------------------- /t/errors/N3059.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3059.neon -------------------------------------------------------------------------------- /t/errors/N3060.neon: -------------------------------------------------------------------------------- 1 | VAR a: Number := 0 2 | a = 2 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N3061.neon: -------------------------------------------------------------------------------- 1 | VAR a: Array := [] 2 | a[0] 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N3062.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3062.neon -------------------------------------------------------------------------------- /t/errors/N3063.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3063.neon -------------------------------------------------------------------------------- /t/errors/N3064.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3064.neon -------------------------------------------------------------------------------- /t/errors/N3065.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3065.neon -------------------------------------------------------------------------------- /t/errors/N3067.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3067.neon -------------------------------------------------------------------------------- /t/errors/N3068.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3068.neon -------------------------------------------------------------------------------- /t/errors/N3069.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3069.neon -------------------------------------------------------------------------------- /t/errors/N3070.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3070.neon -------------------------------------------------------------------------------- /t/errors/N3072.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3072.neon -------------------------------------------------------------------------------- /t/errors/N3078.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3078.neon -------------------------------------------------------------------------------- /t/errors/N3079.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3079.neon -------------------------------------------------------------------------------- /t/errors/N3080.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3080.neon -------------------------------------------------------------------------------- /t/errors/N3081.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3081.neon -------------------------------------------------------------------------------- /t/errors/N3082.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3082.neon -------------------------------------------------------------------------------- /t/errors/N3083.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3083.neon -------------------------------------------------------------------------------- /t/errors/N3084.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3084.neon -------------------------------------------------------------------------------- /t/errors/N3085.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3085.neon -------------------------------------------------------------------------------- /t/errors/N3086.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3086.neon -------------------------------------------------------------------------------- /t/errors/N3087.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3087.neon -------------------------------------------------------------------------------- /t/errors/N3088.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3088.neon -------------------------------------------------------------------------------- /t/errors/N3089.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3089.neon -------------------------------------------------------------------------------- /t/errors/N3090.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3090.neon -------------------------------------------------------------------------------- /t/errors/N3091.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3091.neon -------------------------------------------------------------------------------- /t/errors/N3093.neon: -------------------------------------------------------------------------------- 1 | RETURN 1 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N3094.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3094.neon -------------------------------------------------------------------------------- /t/errors/N3095.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3095.neon -------------------------------------------------------------------------------- /t/errors/N3096.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3096.neon -------------------------------------------------------------------------------- /t/errors/N3098.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3098.neon -------------------------------------------------------------------------------- /t/errors/N3099.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3099.neon -------------------------------------------------------------------------------- /t/errors/N3100.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3100.neon -------------------------------------------------------------------------------- /t/errors/N3101.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3101.neon -------------------------------------------------------------------------------- /t/errors/N3102.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3102.neon -------------------------------------------------------------------------------- /t/errors/N3103.neon: -------------------------------------------------------------------------------- 1 | VAR p: POINTER TO Node 2 | p->value := 5 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N3104.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3104.neon -------------------------------------------------------------------------------- /t/errors/N3105.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3105.neon -------------------------------------------------------------------------------- /t/errors/N3106.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3106.neon -------------------------------------------------------------------------------- /t/errors/N3107.neon: -------------------------------------------------------------------------------- 1 | EXIT FUNCTION 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N3108.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3108.neon -------------------------------------------------------------------------------- /t/errors/N3109.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3109.neon -------------------------------------------------------------------------------- /t/errors/N3110.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3110.neon -------------------------------------------------------------------------------- /t/errors/N3111.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3111.neon -------------------------------------------------------------------------------- /t/errors/N3112.neon: -------------------------------------------------------------------------------- 1 | VAR b: Number := 0 2 | 3 | b->Id 4 | --< 5 | -------------------------------------------------------------------------------- /t/errors/N3113.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3113.neon -------------------------------------------------------------------------------- /t/errors/N3114.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3114.neon -------------------------------------------------------------------------------- /t/errors/N3115.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3115.neon -------------------------------------------------------------------------------- /t/errors/N3116.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3116.neon -------------------------------------------------------------------------------- /t/errors/N3118.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3118.neon -------------------------------------------------------------------------------- /t/errors/N3124.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3124.neon -------------------------------------------------------------------------------- /t/errors/N3126.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3126.neon -------------------------------------------------------------------------------- /t/errors/N3127.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3127.neon -------------------------------------------------------------------------------- /t/errors/N3128.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3128.neon -------------------------------------------------------------------------------- /t/errors/N3129.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3129.neon -------------------------------------------------------------------------------- /t/errors/N3131.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3131.neon -------------------------------------------------------------------------------- /t/errors/N3132.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3132.neon -------------------------------------------------------------------------------- /t/errors/N3134.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3134.neon -------------------------------------------------------------------------------- /t/errors/N3137.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3137.neon -------------------------------------------------------------------------------- /t/errors/N3138.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3138.neon -------------------------------------------------------------------------------- /t/errors/N3139.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3139.neon -------------------------------------------------------------------------------- /t/errors/N3140.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3140.neon -------------------------------------------------------------------------------- /t/errors/N3141.neon: -------------------------------------------------------------------------------- 1 | VAR a: Array := [] 2 | a["foo" TO 5] 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N3142.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3142.neon -------------------------------------------------------------------------------- /t/errors/N3143.neon: -------------------------------------------------------------------------------- 1 | VAR a: Number := 0 2 | a[1 TO 2] 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N3144.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3144.neon -------------------------------------------------------------------------------- /t/errors/N3145.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3145.neon -------------------------------------------------------------------------------- /t/errors/N3146.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3146.neon -------------------------------------------------------------------------------- /t/errors/N3147.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3147.neon -------------------------------------------------------------------------------- /t/errors/N3148.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3148.neon -------------------------------------------------------------------------------- /t/errors/N3149.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3149.neon -------------------------------------------------------------------------------- /t/errors/N3150.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3150.neon -------------------------------------------------------------------------------- /t/errors/N3151.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3151.neon -------------------------------------------------------------------------------- /t/errors/N3152.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3152.neon -------------------------------------------------------------------------------- /t/errors/N3153.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3153.neon -------------------------------------------------------------------------------- /t/errors/N3154.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3154.neon -------------------------------------------------------------------------------- /t/errors/N3155.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3155.neon -------------------------------------------------------------------------------- /t/errors/N3156.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3156.neon -------------------------------------------------------------------------------- /t/errors/N3162.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3162.neon -------------------------------------------------------------------------------- /t/errors/N3163.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3163.neon -------------------------------------------------------------------------------- /t/errors/N3165.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3165.neon -------------------------------------------------------------------------------- /t/errors/N3166.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3166.neon -------------------------------------------------------------------------------- /t/errors/N3169.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3169.neon -------------------------------------------------------------------------------- /t/errors/N3170.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3170.neon -------------------------------------------------------------------------------- /t/errors/N3171.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3171.neon -------------------------------------------------------------------------------- /t/errors/N3172.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3172.neon -------------------------------------------------------------------------------- /t/errors/N3173.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3173.neon -------------------------------------------------------------------------------- /t/errors/N3174.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3174.neon -------------------------------------------------------------------------------- /t/errors/N3175.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3175.neon -------------------------------------------------------------------------------- /t/errors/N3176.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3176.neon -------------------------------------------------------------------------------- /t/errors/N3179.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3179.neon -------------------------------------------------------------------------------- /t/errors/N3180.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3180.neon -------------------------------------------------------------------------------- /t/errors/N3181.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3181.neon -------------------------------------------------------------------------------- /t/errors/N3182.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3182.neon -------------------------------------------------------------------------------- /t/errors/N3183.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3183.neon -------------------------------------------------------------------------------- /t/errors/N3184.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3184.neon -------------------------------------------------------------------------------- /t/errors/N3185.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3185.neon -------------------------------------------------------------------------------- /t/errors/N3186.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3186.neon -------------------------------------------------------------------------------- /t/errors/N3187.neon: -------------------------------------------------------------------------------- 1 | INC "foo" 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N3188.neon: -------------------------------------------------------------------------------- 1 | INC 1 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N3189.neon: -------------------------------------------------------------------------------- 1 | LET a: Number := 1 2 | INC a 3 | --< 4 | -------------------------------------------------------------------------------- /t/errors/N3190.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3190.neon -------------------------------------------------------------------------------- /t/errors/N3191.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3191.neon -------------------------------------------------------------------------------- /t/errors/N3192.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3192.neon -------------------------------------------------------------------------------- /t/errors/N3193.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3193.neon -------------------------------------------------------------------------------- /t/errors/N3194.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3194.neon -------------------------------------------------------------------------------- /t/errors/N3195.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3195.neon -------------------------------------------------------------------------------- /t/errors/N3196.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3196.neon -------------------------------------------------------------------------------- /t/errors/N3197.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3197.neon -------------------------------------------------------------------------------- /t/errors/N3198.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3198.neon -------------------------------------------------------------------------------- /t/errors/N3199.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3199.neon -------------------------------------------------------------------------------- /t/errors/N3200.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3200.neon -------------------------------------------------------------------------------- /t/errors/N3201.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3201.neon -------------------------------------------------------------------------------- /t/errors/N3202.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3202.neon -------------------------------------------------------------------------------- /t/errors/N3203.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3203.neon -------------------------------------------------------------------------------- /t/errors/N3205.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3205.neon -------------------------------------------------------------------------------- /t/errors/N3206.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3206.neon -------------------------------------------------------------------------------- /t/errors/N3207.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3207.neon -------------------------------------------------------------------------------- /t/errors/N3208.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3208.neon -------------------------------------------------------------------------------- /t/errors/N3209.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3209.neon -------------------------------------------------------------------------------- /t/errors/N3210.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3210.neon -------------------------------------------------------------------------------- /t/errors/N3211.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3211.neon -------------------------------------------------------------------------------- /t/errors/N3212.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3212.neon -------------------------------------------------------------------------------- /t/errors/N3213.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3213.neon -------------------------------------------------------------------------------- /t/errors/N3214.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3214.neon -------------------------------------------------------------------------------- /t/errors/N3215.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3215.neon -------------------------------------------------------------------------------- /t/errors/N3216.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3216.neon -------------------------------------------------------------------------------- /t/errors/N3217.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3217.neon -------------------------------------------------------------------------------- /t/errors/N3218.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3218.neon -------------------------------------------------------------------------------- /t/errors/N3219.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3219.neon -------------------------------------------------------------------------------- /t/errors/N3220.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3220.neon -------------------------------------------------------------------------------- /t/errors/N3221.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3221.neon -------------------------------------------------------------------------------- /t/errors/N3222.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3222.neon -------------------------------------------------------------------------------- /t/errors/N3223.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3223.neon -------------------------------------------------------------------------------- /t/errors/N3224.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3224.neon -------------------------------------------------------------------------------- /t/errors/N3225.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3225.neon -------------------------------------------------------------------------------- /t/errors/N3233.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3233.neon -------------------------------------------------------------------------------- /t/errors/N3234.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3234.neon -------------------------------------------------------------------------------- /t/errors/N3235.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3235.neon -------------------------------------------------------------------------------- /t/errors/N3236.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3236.neon -------------------------------------------------------------------------------- /t/errors/N3237.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3237.neon -------------------------------------------------------------------------------- /t/errors/N3238.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3238.neon -------------------------------------------------------------------------------- /t/errors/N3239.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3239.neon -------------------------------------------------------------------------------- /t/errors/N3240.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3240.neon -------------------------------------------------------------------------------- /t/errors/N3241.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3241.neon -------------------------------------------------------------------------------- /t/errors/N3242.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3242.neon -------------------------------------------------------------------------------- /t/errors/N3245.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3245.neon -------------------------------------------------------------------------------- /t/errors/N3247.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3247.neon -------------------------------------------------------------------------------- /t/errors/N3248.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3248.neon -------------------------------------------------------------------------------- /t/errors/N3249.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3249.neon -------------------------------------------------------------------------------- /t/errors/N3250.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3250.neon -------------------------------------------------------------------------------- /t/errors/N3251.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3251.neon -------------------------------------------------------------------------------- /t/errors/N3252.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3252.neon -------------------------------------------------------------------------------- /t/errors/N3253.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3253.neon -------------------------------------------------------------------------------- /t/errors/N3254.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3254.neon -------------------------------------------------------------------------------- /t/errors/N3255.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3255.neon -------------------------------------------------------------------------------- /t/errors/N3256.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3256.neon -------------------------------------------------------------------------------- /t/errors/N3257.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3257.neon -------------------------------------------------------------------------------- /t/errors/N3258.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3258.neon -------------------------------------------------------------------------------- /t/errors/N3259.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3259.neon -------------------------------------------------------------------------------- /t/errors/N3260.neon: -------------------------------------------------------------------------------- 1 | VAR i: Number 2 | UNUSED i 3 | i := 5 4 | --< 5 | -------------------------------------------------------------------------------- /t/errors/N3261.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3261.neon -------------------------------------------------------------------------------- /t/errors/N3262.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3262.neon -------------------------------------------------------------------------------- /t/errors/N3263.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3263.neon -------------------------------------------------------------------------------- /t/errors/N3264.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3264.neon -------------------------------------------------------------------------------- /t/errors/N3265.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3265.neon -------------------------------------------------------------------------------- /t/errors/N3266.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3266.neon -------------------------------------------------------------------------------- /t/errors/N3267.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3267.neon -------------------------------------------------------------------------------- /t/errors/N3268.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3268.neon -------------------------------------------------------------------------------- /t/errors/N3269.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3269.neon -------------------------------------------------------------------------------- /t/errors/N3270.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3270.neon -------------------------------------------------------------------------------- /t/errors/N3271.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3271.neon -------------------------------------------------------------------------------- /t/errors/N3272.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3272.neon -------------------------------------------------------------------------------- /t/errors/N3273.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3273.neon -------------------------------------------------------------------------------- /t/errors/N3274.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3274.neon -------------------------------------------------------------------------------- /t/errors/N3275.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3275.neon -------------------------------------------------------------------------------- /t/errors/N3276.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3276.neon -------------------------------------------------------------------------------- /t/errors/N3277.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3277.neon -------------------------------------------------------------------------------- /t/errors/N3278.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3278.neon -------------------------------------------------------------------------------- /t/errors/N3279.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3279.neon -------------------------------------------------------------------------------- /t/errors/N3280.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3280.neon -------------------------------------------------------------------------------- /t/errors/N3281.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3281.neon -------------------------------------------------------------------------------- /t/errors/N3282.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3282.neon -------------------------------------------------------------------------------- /t/errors/N3283.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3283.neon -------------------------------------------------------------------------------- /t/errors/N3284.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3284.neon -------------------------------------------------------------------------------- /t/errors/N3285.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3285.neon -------------------------------------------------------------------------------- /t/errors/N3286.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3286.neon -------------------------------------------------------------------------------- /t/errors/N3287.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3287.neon -------------------------------------------------------------------------------- /t/errors/N3288.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3288.neon -------------------------------------------------------------------------------- /t/errors/N3289.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3289.neon -------------------------------------------------------------------------------- /t/errors/N3290.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3290.neon -------------------------------------------------------------------------------- /t/errors/N3291.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3291.neon -------------------------------------------------------------------------------- /t/errors/N3292.neon: -------------------------------------------------------------------------------- 1 | VAR a 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N3293.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3293.neon -------------------------------------------------------------------------------- /t/errors/N3294.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3294.neon -------------------------------------------------------------------------------- /t/errors/N3295.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3295.neon -------------------------------------------------------------------------------- /t/errors/N3296.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3296.neon -------------------------------------------------------------------------------- /t/errors/N3297.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3297.neon -------------------------------------------------------------------------------- /t/errors/N3298.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3298.neon -------------------------------------------------------------------------------- /t/errors/N3299.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3299.neon -------------------------------------------------------------------------------- /t/errors/N3300.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3300.neon -------------------------------------------------------------------------------- /t/errors/N3301.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3301.neon -------------------------------------------------------------------------------- /t/errors/N3302.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3302.neon -------------------------------------------------------------------------------- /t/errors/N3303.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3303.neon -------------------------------------------------------------------------------- /t/errors/N3304.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3304.neon -------------------------------------------------------------------------------- /t/errors/N3305.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3305.neon -------------------------------------------------------------------------------- /t/errors/N3306.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3306.neon -------------------------------------------------------------------------------- /t/errors/N3307.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3307.neon -------------------------------------------------------------------------------- /t/errors/N3308.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3308.neon -------------------------------------------------------------------------------- /t/errors/N3309.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3309.neon -------------------------------------------------------------------------------- /t/errors/N3310.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3310.neon -------------------------------------------------------------------------------- /t/errors/N3311.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3311.neon -------------------------------------------------------------------------------- /t/errors/N3312.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3312.neon -------------------------------------------------------------------------------- /t/errors/N3313.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3313.neon -------------------------------------------------------------------------------- /t/errors/N3314.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3314.neon -------------------------------------------------------------------------------- /t/errors/N3315.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3315.neon -------------------------------------------------------------------------------- /t/errors/N3316.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3316.neon -------------------------------------------------------------------------------- /t/errors/N3317.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3317.neon -------------------------------------------------------------------------------- /t/errors/N3318.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3318.neon -------------------------------------------------------------------------------- /t/errors/N3319.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3319.neon -------------------------------------------------------------------------------- /t/errors/N3320.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3320.neon -------------------------------------------------------------------------------- /t/errors/N3321.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3321.neon -------------------------------------------------------------------------------- /t/errors/N3323.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3323.neon -------------------------------------------------------------------------------- /t/errors/N3324.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3324.neon -------------------------------------------------------------------------------- /t/errors/N3325.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3325.neon -------------------------------------------------------------------------------- /t/errors/N3326.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3326.neon -------------------------------------------------------------------------------- /t/errors/N3327.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3327.neon -------------------------------------------------------------------------------- /t/errors/N3328.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3328.neon -------------------------------------------------------------------------------- /t/errors/N3329.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3329.neon -------------------------------------------------------------------------------- /t/errors/N3330.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3330.neon -------------------------------------------------------------------------------- /t/errors/N3331.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3331.neon -------------------------------------------------------------------------------- /t/errors/N3332.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3332.neon -------------------------------------------------------------------------------- /t/errors/N3333.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3333.neon -------------------------------------------------------------------------------- /t/errors/N3334.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3334.neon -------------------------------------------------------------------------------- /t/errors/N3335.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3335.neon -------------------------------------------------------------------------------- /t/errors/N3336.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3336.neon -------------------------------------------------------------------------------- /t/errors/N3337.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3337.neon -------------------------------------------------------------------------------- /t/errors/N3338.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3338.neon -------------------------------------------------------------------------------- /t/errors/N3339.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3339.neon -------------------------------------------------------------------------------- /t/errors/N3340.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3340.neon -------------------------------------------------------------------------------- /t/errors/N3341.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3341.neon -------------------------------------------------------------------------------- /t/errors/N3342.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N3342.neon -------------------------------------------------------------------------------- /t/errors/N4101.neon: -------------------------------------------------------------------------------- 1 | EXEC SQL 2 | --< 3 | -------------------------------------------------------------------------------- /t/errors/N4201.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4201.neon -------------------------------------------------------------------------------- /t/errors/N4202.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4202.neon -------------------------------------------------------------------------------- /t/errors/N4203.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4203.neon -------------------------------------------------------------------------------- /t/errors/N4204.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4204.neon -------------------------------------------------------------------------------- /t/errors/N4205.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4205.neon -------------------------------------------------------------------------------- /t/errors/N4206.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4206.neon -------------------------------------------------------------------------------- /t/errors/N4207.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4207.neon -------------------------------------------------------------------------------- /t/errors/N4208.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4208.neon -------------------------------------------------------------------------------- /t/errors/N4209.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4209.neon -------------------------------------------------------------------------------- /t/errors/N4210.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4210.neon -------------------------------------------------------------------------------- /t/errors/N4211.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4211.neon -------------------------------------------------------------------------------- /t/errors/N4212.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4212.neon -------------------------------------------------------------------------------- /t/errors/N4213.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4213.neon -------------------------------------------------------------------------------- /t/errors/N4214.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4214.neon -------------------------------------------------------------------------------- /t/errors/N4215.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4215.neon -------------------------------------------------------------------------------- /t/errors/N4216.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4216.neon -------------------------------------------------------------------------------- /t/errors/N4217.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4217.neon -------------------------------------------------------------------------------- /t/errors/N4218.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4218.neon -------------------------------------------------------------------------------- /t/errors/N4219.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4219.neon -------------------------------------------------------------------------------- /t/errors/N4220.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4220.neon -------------------------------------------------------------------------------- /t/errors/N4221.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4221.neon -------------------------------------------------------------------------------- /t/errors/N4222.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4222.neon -------------------------------------------------------------------------------- /t/errors/N4223.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4223.neon -------------------------------------------------------------------------------- /t/errors/N4224.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4224.neon -------------------------------------------------------------------------------- /t/errors/N4225.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4225.neon -------------------------------------------------------------------------------- /t/errors/N4226.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4226.neon -------------------------------------------------------------------------------- /t/errors/N4227.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4227.neon -------------------------------------------------------------------------------- /t/errors/N4229.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4229.neon -------------------------------------------------------------------------------- /t/errors/N4301.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4301.neon -------------------------------------------------------------------------------- /t/errors/N4302.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4302.neon -------------------------------------------------------------------------------- /t/errors/N4303.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4303.neon -------------------------------------------------------------------------------- /t/errors/N4304.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4304.neon -------------------------------------------------------------------------------- /t/errors/N4305.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4305.neon -------------------------------------------------------------------------------- /t/errors/N4306.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4306.neon -------------------------------------------------------------------------------- /t/errors/N4307.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4307.neon -------------------------------------------------------------------------------- /t/errors/N4308.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4308.neon -------------------------------------------------------------------------------- /t/errors/N4309.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/errors/N4309.neon -------------------------------------------------------------------------------- /t/exception-as.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/exception-as.neon -------------------------------------------------------------------------------- /t/exception.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/exception.neon -------------------------------------------------------------------------------- /t/exit-for.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/exit-for.neon -------------------------------------------------------------------------------- /t/exit-while.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/exit-while.neon -------------------------------------------------------------------------------- /t/export.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/export.neon -------------------------------------------------------------------------------- /t/expr.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/expr.neon -------------------------------------------------------------------------------- /t/file-exists.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/file-exists.neon -------------------------------------------------------------------------------- /t/file-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/file-test.neon -------------------------------------------------------------------------------- /t/for-bounds.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/for-bounds.neon -------------------------------------------------------------------------------- /t/for-nested2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/for-nested2.neon -------------------------------------------------------------------------------- /t/for-scope.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/for-scope.neon -------------------------------------------------------------------------------- /t/for.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/for.neon -------------------------------------------------------------------------------- /t/foreach-eval.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/foreach-eval.neon -------------------------------------------------------------------------------- /t/foreach.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/foreach.neon -------------------------------------------------------------------------------- /t/format.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/format.neon -------------------------------------------------------------------------------- /t/forward.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/forward.neon -------------------------------------------------------------------------------- /t/function.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/function.neon -------------------------------------------------------------------------------- /t/gc-array.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/gc-array.neon -------------------------------------------------------------------------------- /t/gc1.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/gc1.neon -------------------------------------------------------------------------------- /t/gc2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/gc2.neon -------------------------------------------------------------------------------- /t/gc3.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/gc3.neon -------------------------------------------------------------------------------- /t/hello.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/hello.neon -------------------------------------------------------------------------------- /t/if.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/if.neon -------------------------------------------------------------------------------- /t/import-dup.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/import-dup.neon -------------------------------------------------------------------------------- /t/import.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/import.neon -------------------------------------------------------------------------------- /t/in.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/in.neon -------------------------------------------------------------------------------- /t/inc.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/inc.neon -------------------------------------------------------------------------------- /t/indent.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/indent.neon -------------------------------------------------------------------------------- /t/index.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/index.neon -------------------------------------------------------------------------------- /t/inline-init.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/inline-init.neon -------------------------------------------------------------------------------- /t/inline-init4.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/inline-init4.neon -------------------------------------------------------------------------------- /t/input.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/input.neon -------------------------------------------------------------------------------- /t/intdiv.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/intdiv.neon -------------------------------------------------------------------------------- /t/interface.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/interface.neon -------------------------------------------------------------------------------- /t/intrinsic.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/intrinsic.neon -------------------------------------------------------------------------------- /t/io-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/io-test.neon -------------------------------------------------------------------------------- /t/json-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/json-test.neon -------------------------------------------------------------------------------- /t/let.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/let.neon -------------------------------------------------------------------------------- /t/lexer-raw.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/lexer-raw.neon -------------------------------------------------------------------------------- /t/literal.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/literal.neon -------------------------------------------------------------------------------- /t/local-clear.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/local-clear.neon -------------------------------------------------------------------------------- /t/logical.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/logical.neon -------------------------------------------------------------------------------- /t/logical2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/logical2.neon -------------------------------------------------------------------------------- /t/loop-label.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/loop-label.neon -------------------------------------------------------------------------------- /t/loop.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/loop.neon -------------------------------------------------------------------------------- /t/main.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/main.neon -------------------------------------------------------------------------------- /t/math-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/math-test.neon -------------------------------------------------------------------------------- /t/methods.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/methods.neon -------------------------------------------------------------------------------- /t/mkdir.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/mkdir.neon -------------------------------------------------------------------------------- /t/mmap-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/mmap-test.neon -------------------------------------------------------------------------------- /t/module-alias.neon: -------------------------------------------------------------------------------- 1 | IMPORT math ALIAS m 2 | 3 | print("\(m.sqrt(9))") 4 | --= 3 5 | -------------------------------------------------------------------------------- /t/module-import-name-alias2.neon: -------------------------------------------------------------------------------- 1 | IMPORT module.var ALIAS v 2 | 3 | print(v) 4 | --= test 5 | -------------------------------------------------------------------------------- /t/module-import-name2.neon: -------------------------------------------------------------------------------- 1 | IMPORT module.var 2 | 3 | print(var) 4 | --= test 5 | -------------------------------------------------------------------------------- /t/module.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/module.neon -------------------------------------------------------------------------------- /t/module2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/module2.neon -------------------------------------------------------------------------------- /t/modulo.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/modulo.neon -------------------------------------------------------------------------------- /t/net-test-udp.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/net-test-udp.neon -------------------------------------------------------------------------------- /t/net-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/net-test.neon -------------------------------------------------------------------------------- /t/new-init.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/new-init.neon -------------------------------------------------------------------------------- /t/next-for.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/next-for.neon -------------------------------------------------------------------------------- /t/next-while.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/next-while.neon -------------------------------------------------------------------------------- /t/number-ceil.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/number-ceil.neon -------------------------------------------------------------------------------- /t/object-isa.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/object-isa.neon -------------------------------------------------------------------------------- /t/object-null.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/object-null.neon -------------------------------------------------------------------------------- /t/object-null2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/object-null2.neon -------------------------------------------------------------------------------- /t/object.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/object.neon -------------------------------------------------------------------------------- /t/outer-tail.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/outer-tail.neon -------------------------------------------------------------------------------- /t/outer.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/outer.neon -------------------------------------------------------------------------------- /t/outer2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/outer2.neon -------------------------------------------------------------------------------- /t/panic.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/panic.neon -------------------------------------------------------------------------------- /t/parameters.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/parameters.neon -------------------------------------------------------------------------------- /t/pointer-nil.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer-nil.neon -------------------------------------------------------------------------------- /t/pointer.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer.neon -------------------------------------------------------------------------------- /t/pointer2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer2.neon -------------------------------------------------------------------------------- /t/pointer3.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer3.neon -------------------------------------------------------------------------------- /t/pointer4.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer4.neon -------------------------------------------------------------------------------- /t/pointer5.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer5.neon -------------------------------------------------------------------------------- /t/pointer7.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer7.neon -------------------------------------------------------------------------------- /t/pointer8.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/pointer8.neon -------------------------------------------------------------------------------- /t/posix-fork.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/posix-fork.neon -------------------------------------------------------------------------------- /t/predeclare1.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/predeclare1.neon -------------------------------------------------------------------------------- /t/predeclare2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/predeclare2.neon -------------------------------------------------------------------------------- /t/print-object.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/print-object.neon -------------------------------------------------------------------------------- /t/random-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/random-test.neon -------------------------------------------------------------------------------- /t/record-empty.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/record-empty.neon -------------------------------------------------------------------------------- /t/record-init.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/record-init.neon -------------------------------------------------------------------------------- /t/record-init2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/record-init2.neon -------------------------------------------------------------------------------- /t/recursion.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/recursion.neon -------------------------------------------------------------------------------- /t/regex-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/regex-test.neon -------------------------------------------------------------------------------- /t/repeat-next.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/repeat-next.neon -------------------------------------------------------------------------------- /t/repeat.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/repeat.neon -------------------------------------------------------------------------------- /t/repl_assign.neon: -------------------------------------------------------------------------------- 1 | LET a: Number := 5 2 | -------------------------------------------------------------------------------- /t/repl_assign2.neon: -------------------------------------------------------------------------------- 1 | VAR a: Number 2 | a := 5 3 | -------------------------------------------------------------------------------- /t/repl_for.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/repl_for.neon -------------------------------------------------------------------------------- /t/repl_import.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/repl_import.neon -------------------------------------------------------------------------------- /t/return-case2.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/return-case2.neon -------------------------------------------------------------------------------- /t/return-if.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/return-if.neon -------------------------------------------------------------------------------- /t/return-loop.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/return-loop.neon -------------------------------------------------------------------------------- /t/return-try.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/return-try.neon -------------------------------------------------------------------------------- /t/retval-index.neon: -------------------------------------------------------------------------------- 1 | print(str(1)[0]) 2 | --= 1 3 | -------------------------------------------------------------------------------- /t/rtl.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/rtl.neon -------------------------------------------------------------------------------- /t/runtime-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/runtime-test.neon -------------------------------------------------------------------------------- /t/shebang.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/shebang.neon -------------------------------------------------------------------------------- /t/shortcut.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/shortcut.neon -------------------------------------------------------------------------------- /t/sql-connect.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sql-connect.neon -------------------------------------------------------------------------------- /t/sql-cursor.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sql-cursor.neon -------------------------------------------------------------------------------- /t/sql-embed.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sql-embed.neon -------------------------------------------------------------------------------- /t/sql-execute.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sql-execute.neon -------------------------------------------------------------------------------- /t/sql-query.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sql-query.neon -------------------------------------------------------------------------------- /t/sql-whenever.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sql-whenever.neon -------------------------------------------------------------------------------- /t/sqlite-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sqlite-test.neon -------------------------------------------------------------------------------- /t/string-bytes.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/string-bytes.neon -------------------------------------------------------------------------------- /t/string-in.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/string-in.neon -------------------------------------------------------------------------------- /t/string-index.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/string-index.neon -------------------------------------------------------------------------------- /t/string-slice.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/string-slice.neon -------------------------------------------------------------------------------- /t/string-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/string-test.neon -------------------------------------------------------------------------------- /t/strings.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/strings.neon -------------------------------------------------------------------------------- /t/struct-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/struct-test.neon -------------------------------------------------------------------------------- /t/structure.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/structure.neon -------------------------------------------------------------------------------- /t/sys-exit.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/sys-exit.neon -------------------------------------------------------------------------------- /t/tail-call.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/tail-call.neon -------------------------------------------------------------------------------- /t/testcase.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/testcase.neon -------------------------------------------------------------------------------- /t/textio-seek.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/textio-seek.neon -------------------------------------------------------------------------------- /t/textio-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/textio-test.neon -------------------------------------------------------------------------------- /t/time-test.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/time-test.neon -------------------------------------------------------------------------------- /t/tostring.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/tostring.neon -------------------------------------------------------------------------------- /t/type-compat.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/type-compat.neon -------------------------------------------------------------------------------- /t/type-nested.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/type-nested.neon -------------------------------------------------------------------------------- /t/type.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/type.neon -------------------------------------------------------------------------------- /t/unary-plus.neon: -------------------------------------------------------------------------------- 1 | VAR a: Number := +5 2 | print("\(a)") 3 | --= 5 4 | -------------------------------------------------------------------------------- /t/unicode-char.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/unicode-char.neon -------------------------------------------------------------------------------- /t/unused-repeat.neon: -------------------------------------------------------------------------------- 1 | REPEAT 2 | LET x: Number := 5 3 | UNTIL x > 0 4 | -------------------------------------------------------------------------------- /t/value-copy.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/value-copy.neon -------------------------------------------------------------------------------- /t/value-index.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/value-index.neon -------------------------------------------------------------------------------- /t/value-method.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/value-method.neon -------------------------------------------------------------------------------- /t/var-reset.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/var-reset.neon -------------------------------------------------------------------------------- /t/var.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/var.neon -------------------------------------------------------------------------------- /t/varargs.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/varargs.neon -------------------------------------------------------------------------------- /t/while-valid.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/while-valid.neon -------------------------------------------------------------------------------- /t/while.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/t/while.neon -------------------------------------------------------------------------------- /tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tmp/hello.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/tmp/hello.bmp -------------------------------------------------------------------------------- /tools/coverage.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/tools/coverage.neon -------------------------------------------------------------------------------- /tools/helium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/tools/helium.py -------------------------------------------------------------------------------- /tools/imports.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/tools/imports.neon -------------------------------------------------------------------------------- /tools/ndb.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghewgill/neon-lang/HEAD/tools/ndb.neon --------------------------------------------------------------------------------