Bruce Hill
e22c35681f
Auto-upgraded everything.
2018-09-14 19:17:16 -07:00
Bruce Hill
7112af7cb6
Fixed comments in nomsu codegen.
2018-09-14 15:24:31 -07:00
Bruce Hill
626b6cab79
Updated compiler to produce cool string output.
2018-09-14 15:20:07 -07:00
Bruce Hill
3e2844ef62
Added error truncating.
2018-09-14 14:55:00 -07:00
Bruce Hill
9bba7dd2cd
Using more concise peg file finding.
2018-09-14 14:46:29 -07:00
Bruce Hill
d428725c86
Recompile
2018-09-14 14:43:33 -07:00
Bruce Hill
13ce4e7ee9
Renaming parser2 to parser.
2018-09-14 14:42:20 -07:00
Bruce Hill
31f593fb09
Removing the remnants of the old parser system.
2018-09-14 14:39:10 -07:00
Bruce Hill
54e1f99e90
Upgraded nomsu.1.peg to tidier version.
2018-09-14 14:26:06 -07:00
Bruce Hill
21d0d7901c
Upgraded nomsu.2.peg and fixed minor bug in Source serialization in
...
trees.
2018-09-14 14:12:22 -07:00
Bruce Hill
7c1f2dfd69
Fixes and improvements, and ported nomsu.3.peg to new tidier syntax.
2018-09-14 14:01:07 -07:00
Bruce Hill
ea310306d7
Initial working version.
2018-09-12 15:32:04 -07:00
Bruce Hill
9e10c8bf00
Removing dead code and string.as_lua_id() (now just set on string
...
metametatable)
2018-09-10 16:37:16 -07:00
Bruce Hill
989e133a57
Fixed tree_to_nomsu for method calls that span lines.
2018-09-10 16:29:17 -07:00
Bruce Hill
7c6047254e
Upgraded to 3.8 (text method changes) and fixed some bugs in
...
tree_to_nomsu.
2018-09-10 16:26:27 -07:00
Bruce Hill
43e6523fd4
Shifting towards more text methods instead of text global functions.
...
Also fixed a bug with method call parenthesizing.
2018-09-10 15:56:00 -07:00
Bruce Hill
a35d010dfe
Removed the mandatory "_" prefix for Nomsu variables, renamed "list" and
...
"dict" to "List" and "Dict", or in Nomsu's environment, "_List" and
"_Dict", removed uuid.lua and replaced it with core/id.nom for handling
IDs.
2018-09-06 12:48:16 -07:00
Bruce Hill
e1bc075bb5
Removing the "A_" prefix on action names, and improving the quality of
...
as_lua_id() (guaranteed injectivity).
2018-08-31 15:22:32 -07:00
Bruce Hill
4f30e02acb
Handling more compatibility stuff, including Lua 5.4, and a backup for
...
if openssl module is not found, and moving containers (List/Dict) into
their own file, as well as bit operators (and support for __bxor, etc.
metamethods in Lua 5.2/LuaJIT)
2018-08-29 19:39:15 -07:00
Bruce Hill
811fdd6856
Tweaked version 3.6 to include deprecating list append/removal functions
...
in favor of using a method call style.
2018-08-29 16:00:04 -07:00
Bruce Hill
e64632be1a
Switched "as_lua_id" to not add an underscore by default, and just add
...
it manually to variables and A_ as a prefix to actions. Now, by default,
classes and method calls don't use the A_ prefix, which means nomsu can
more easily play nice with regular Lua objects.
2018-08-29 14:20:18 -07:00
Bruce Hill
e44acbf338
Lots of overhaul, supporting a new Object Oriented approach (e.g.
...
%obj::action 1 2) and syntax.
2018-08-28 15:08:07 -07:00
Bruce Hill
930d522fbc
Bunch of miscellaneous changes. Paved the way a little bit for having
...
different compiler domains.
2018-08-27 13:39:22 -07:00
Bruce Hill
4f53ea5cc4
Cleaning up clumping logic a little.
2018-07-30 15:12:19 -07:00
Bruce Hill
ab4ebdf175
Changed autoformatting rules to ensure tests get clumped together with
...
the thing below them.
2018-07-30 15:06:03 -07:00
Bruce Hill
dc0c940d65
Added bit library and support for checking Lua version and whether
...
LuaJIT is being used.
2018-07-30 14:26:28 -07:00
Bruce Hill
f6e9bdc1c0
Fixed a bug where if an indented string interpolation was at the end of
...
an indented text, the nomsu codegen would fail to put a "\n.." after it,
so it wouldn't parse as an iterpolation.
2018-07-26 16:00:12 -07:00
Bruce Hill
e7c3455d4f
Recompiled.
2018-07-26 15:57:11 -07:00
Bruce Hill
b1c0446a3c
Updating file stuff for better compatibility with Lua 5.2 and fixing
...
some bugs. Also updated README to provide more compatibility info and
list Lua5.2+ as a requirement.
2018-07-24 16:43:56 -07:00
Bruce Hill
b6c99c56a1
Updated package.nomsupath behavior to first search the installed
...
locations, *then* search the current directory. This makes the system `nomsu` run
properly, even if the local directory has a broken file that has the
same name as a nomsu file.
2018-07-24 15:09:55 -07:00
Bruce Hill
765cc704d5
Renamed nomsu_tree -> syntax_tree, so anyone looking for syntax trees
...
knows where to look.
2018-07-23 15:29:03 -07:00
Bruce Hill
470a6fe7f9
Fixed blocks starting with extra newline when they start with a comment.
2018-07-23 14:41:30 -07:00
Bruce Hill
3e222b40ef
Merging List/Dict codegen paths to reduce code duplication.
2018-07-22 15:59:45 -07:00
Bruce Hill
4fa9757fa2
Better handling of parsing non-filechunks text.
2018-07-22 14:57:56 -07:00
Bruce Hill
ae4670bd8e
Improvements working towards better inline tests. Improved handling of
...
file spoofing and adding -e command line flag for executing a string.
2018-07-21 14:44:26 -07:00
Bruce Hill
2577c4511e
Improving nomsu codegen.
2018-07-20 20:13:08 -07:00
Bruce Hill
385beb4998
Slightly better newline handling for long text. Now won't force an
...
indent for "\nhello"
2018-07-20 19:48:21 -07:00
Bruce Hill
878fff6db5
Added documentation.
2018-07-20 19:36:18 -07:00
Bruce Hill
8deb59b6a7
Fix for (..)-indented actions not handling newlines right.
2018-07-20 18:10:31 -07:00
Bruce Hill
c4be74a5d3
Simplifying and correcting the nomsu codegen.
2018-07-20 17:51:33 -07:00
Bruce Hill
9f0b5384d7
Improving and cleaning up nomsu codegen.
2018-07-19 22:59:37 -07:00
Bruce Hill
53bec8091f
Fixes and simplifications for nomsu codegen.
2018-07-19 21:28:09 -07:00
Bruce Hill
9d6627aee5
Hopefully last correctness fix for trailing_line_len(), now it's just
...
dumb and slow, but correct. Also simplified recursion options a bit for
tree_to_nomsu()
2018-07-19 21:10:19 -07:00
Bruce Hill
47db74229d
Fixed some bugs in trailing_line_len() and refactored tree_to_nomsu into
...
separate inline/not-inline functions.
2018-07-19 20:42:09 -07:00
Bruce Hill
e5e47cb9ee
*actual* fix for the codegen for (do: if (yes) (: say "hi"); say "done")
...
example
2018-07-19 17:01:11 -07:00
Bruce Hill
ddc7b8e70c
Fix for nomsu codegen of blocks, particularly nested mutli-blocks like:
...
(do: if (yes) (: say "hi"); say "done")
2018-07-19 16:58:47 -07:00
Bruce Hill
bf67a61013
Updating to version 2.4.4.3, with new syntax for multi-statement 'if'
...
and switch statements.
2018-07-18 17:56:15 -07:00
Bruce Hill
af441330ff
Improving nomsu codegen.
2018-07-17 23:33:56 -07:00
Bruce Hill
ba639f2bd0
Upgraded core code to latest Nomsu verison.
2018-07-17 23:08:24 -07:00
Bruce Hill
854b2a652f
Fixed a bug in text escapes in nomsu codegen.
2018-07-17 17:53:17 -07:00
Bruce Hill
77a338c167
Oops, didn't mean to check in smushed_action.
2018-07-17 17:25:28 -07:00
Bruce Hill
cbd1437752
Optimization/simplification pass.
2018-07-17 16:13:55 -07:00
Bruce Hill
39a0121856
Improvements to nomsu codegen.
2018-07-17 15:01:04 -07:00
Bruce Hill
0442c8dd21
Overhaul of comment handling, plus a few fixes (e.g. a fix for indented
...
text that begins with a nomsu comment)
2018-07-17 14:12:51 -07:00
Bruce Hill
be06fc096a
Major changes to how versioning and parsing work. This should be a
...
better path going forward to handling upgrades. Old syntax files will
stick around for compatibility purposes. Old syntax can be parsed into
valid syntax trees via the old syntax (.peg) files, and then old syntax
trees should be valid and can be upgraded via the normal code path. This
change has lots of improvements to Nomsu codegen too.
2018-07-15 19:43:28 -07:00
Bruce Hill
8a44869c4a
Aesthetic tweak to generated nomsu code with colons.
2018-07-14 15:06:17 -07:00
Bruce Hill
c9ff0ff04b
Fixed up some edge cases with parsing and comments.
2018-07-14 14:53:03 -07:00
Bruce Hill
d535dc5794
Fixed up comment generation to old standards
2018-07-14 14:41:32 -07:00
Bruce Hill
01a4f36398
Minor changes.
2018-07-13 14:30:39 -07:00
Bruce Hill
0fd3d1f2b9
Fixing up comments, slowly.
2018-07-12 21:42:16 -07:00
Bruce Hill
af62e3e8bf
All tests passing.
2018-07-12 21:24:13 -07:00
Bruce Hill
ba2b83d566
Fixed nomsu codegen for indented text and improved text parsing. Also
...
moved some more tests inline.
2018-07-11 14:14:16 -07:00
Bruce Hill
b32634faf8
Fixed dumb bug that broke the tests.
2018-07-10 17:37:00 -07:00
Bruce Hill
194146d365
Improving codegen line wrapping.
2018-07-10 17:34:50 -07:00
Bruce Hill
26a6174f28
Fixed dumb bug.
2018-07-10 17:13:53 -07:00
Bruce Hill
3fd5687370
Fixed up line numbers for generated code.
2018-07-10 17:10:59 -07:00
Bruce Hill
fa72d7eeb1
Fixing up error reporting and ripping out LDT-specific code (now a
...
debugger can
be provided by a command line flag)
2018-07-10 15:00:35 -07:00
Bruce Hill
de34592dbe
Adding some compatibility stuff.
2018-07-09 19:22:46 -07:00
Bruce Hill
11e9e36636
Simplified the command line interface.
2018-07-09 16:59:20 -07:00
Bruce Hill
0923b0192c
Improvements to nomsu codegen (comments are now retained) and some
...
improvements to handling of stdin and fixes for error reporting.
2018-06-28 14:13:01 -07:00
Bruce Hill
65dc1f2196
Cleaning up metaprogramming a bit and fixing/adding test for recursion
...
control flow.
2018-06-26 15:53:00 -07:00
Bruce Hill
2db2c68ac3
Cleaning up code and shuffling things around.
2018-06-24 23:18:42 -07:00
Bruce Hill
ad342b63b7
Simplifications/streamlining the Make process, and cleaning up some of
...
how command line interaction and `use %` work.
2018-06-24 16:11:40 -07:00
Bruce Hill
863983202c
Fixed up nomsupath behavior and refactored file stuff into its own file.
2018-06-23 17:22:43 -07:00
Bruce Hill
dbf3de3d8e
Added versioning system.
2018-06-23 00:57:39 -07:00
Bruce Hill
126678f737
Adding fancy makefile that compiles all the moonscript files and
...
precompiles all the nomsu files and can build a nice executable file and
install it wherever you like.
2018-06-22 02:41:08 -07:00
Bruce Hill
d73cbf0aa5
Cleanups.
2018-06-20 15:22:06 -07:00
Bruce Hill
7deed5af41
Fixing up some error reporting
2018-06-19 02:00:59 -07:00
Bruce Hill
59c79bdf57
Split up CLI and NomsuCompiler
2018-06-19 01:27:41 -07:00