Commit Graph

978 Commits

Author SHA1 Message Date
1f47f1aa28 Removed automatic file caching. 2019-01-08 16:38:45 -08:00
1d2bd858fd Made the source mapping optional (and disabled with -O2+) 2019-01-08 16:35:51 -08:00
fc1655e028 Made separate versions of (sh> ...) and (=sh ...) for versions that
care or don't care about the output.
2019-01-08 16:34:41 -08:00
d62631fb50 Added compatibility files and revamped core/math to use global variables
instead of compile actions. Also added mix (lerp) and smooth
(smoothstep) functions.
2019-01-08 16:33:23 -08:00
1914249e3b Made (external $x = $y) work using ($x = $y), so e.g. (external
[$x, $y] = [1, 2]) now works properly.
2019-01-08 16:30:21 -08:00
2048d4468a Added quit/exit and switched Files.read->exists. 2019-01-07 21:42:26 -08:00
eda80cf575 Renamed "source" to "file" to avoid confusion. 2019-01-07 21:40:56 -08:00
31e1bfa58f Moved require to top level. 2019-01-07 21:40:35 -08:00
80167c9df2 Fix for no-arg functioncalls of expressions (e.g. $fn()), and line
wrapping of list/dicts.
2019-01-07 21:40:01 -08:00
5f961d32c4 Fix for text interpolation of numbers. 2019-01-07 21:38:58 -08:00
3ceca7b635 Added clamp function 2019-01-07 20:44:39 -08:00
712b9bd682 Switched "ask" to be a proper function so it works as either an
expression or a statement.
2019-01-07 20:43:52 -08:00
f0fc8c0cf6 Added option to skip cache and piped stderr to /dev/null 2019-01-06 15:25:22 -08:00
467d6457f3 Made wildcards recursive and fixed default PREFIX 2019-01-04 14:50:51 -08:00
0507d8de8c Updating example 2019-01-01 17:31:50 -08:00
ad6c5172e8 Removing shim. 2019-01-01 17:17:52 -08:00
3e89092833 Some changes to the error API, a fix for statement block parsing, and
replacing ((foo 1 baz)'s meaning) with $(foo 1 baz).
2019-01-01 17:17:23 -08:00
e68eb04d69 Oops, missing paren. 2019-01-01 15:55:37 -08:00
a82b0d9d24 Added support for $(foo 1 baz 2) as a way to access (foo 1 baz 2)'s
meaning.
2019-01-01 15:53:21 -08:00
b6d3cbd61c Misc changes, including text indented interpolations are now indented
relative to the text, not the opening '("', code objects can now remove
all free vars, the REPL uses global vars. Error API is changing a bit.
2019-01-01 15:07:10 -08:00
0760d4fb64 Fix for bug in nomsupath checking of input files. 2018-12-31 02:29:55 -08:00
06cded44af Added todo 2018-12-31 02:16:32 -08:00
811aefd0df Added replace -q and chmod +x'd two tools. 2018-12-31 01:52:46 -08:00
0ae59c5a90 Added "replace" tool. 2018-12-31 01:39:58 -08:00
6edf6a2755 Overhaul of command line argument parsing. Now supports "-abc" as 3
flags, and stores them as .a, .b, .c instead of ."-a", etc. (same for
--args)
2018-12-31 01:38:23 -08:00
7762c8c45b Added the ": for $ in $: ..." shorthand for indented comprehensions. 2018-12-31 01:37:21 -08:00
d8f9b15fd9 Cleaning up some of the documentation and dead code. 2018-12-31 01:02:46 -08:00
0f83a81fa6 Updated comments to use $ instead of % 2018-12-31 00:55:58 -08:00
dff2c1c915 Fixed bug where cached files would incorrectly appear to not have been
found.
2018-12-31 00:28:08 -08:00
faaf5311c8 Updated shebangs 2018-12-31 00:20:07 -08:00
84e2065a26 Bumped version number. 2018-12-31 00:19:00 -08:00
5059c081ac Auto-upgraded code. 2018-12-30 23:58:47 -08:00
ec69ee6f62 Fixes for: indented strings ending in ", peeking at code object text
before modifying them, and major upgrades to the nomsu codegen,
including support for indented inline arguments (instead of using
"\n..") and just generally better line wrapping, including finally good
rules for when to use indented text (for almost all cases).
2018-12-30 23:58:43 -08:00
435eae7c0a Some minor fixes for (type of $ast) and indexing codegen. 2018-12-30 21:17:10 -08:00
44c3fb26bf Updated readme. 2018-12-30 19:06:16 -08:00
000872840b Added new syntax file. 2018-12-30 19:04:51 -08:00
8a3c324087 Update to new syntax. 2018-12-30 19:04:45 -08:00
359152da17 Added parentheses to prevent stupid breakage. 2018-12-19 03:02:31 -08:00
21a1121da6 Removing debug print. 2018-12-19 02:30:23 -08:00
f75fc15cdf Updated to be more fault tolerant with "-q" flag 2018-12-19 02:27:10 -08:00
a7d912a33a Initial pass on updating syntax. 2018-12-18 19:30:12 -08:00
8e52f1901b Renamed autoformat -> format for concision (it's obviously auto, it's a
tool).
2018-12-18 19:25:10 -08:00
94740a9b41 Improved command line interface and robustness of tools. 2018-12-18 19:24:37 -08:00
ad09f002e8 Renamed find_action to find because it finds anything now. 2018-12-18 18:49:15 -08:00
046767e240 Improved the flexibility and options of the find tool. 2018-12-18 18:48:37 -08:00
af507f7f7a Added fallback for if there is a source without an endpoint. 2018-12-18 17:35:42 -08:00
ec1a1935d6 Autoformatted license and added title 2018-12-18 17:34:48 -08:00
908243ba21 Added comprehension form to containers, e.g. List(function(add) add(5)
end)
2018-12-18 17:34:35 -08:00
79881757fb Truncating super long error messages. 2018-12-15 15:15:10 -08:00
17fc0a0e38 Fix for files getting run twice by (use "") 2018-12-15 15:14:56 -08:00