Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-05-27 | Add support for value subscript after expansionsadhoc-recipe-history | Boris Kolpackov | 1 | -3/+2 | |
Value subscript is only recognized in evaluation contexts (due to ambiguity with wildcard patterns; consider: $x[123].txt) and should be unseparated from the previous token. For example: x = ($y[1]) x = (($f ? $y : $z)[1]) x = ($identity($x)[$z]) | |||||
2020-05-27 | Various minor fixes and cleanups | Boris Kolpackov | 3 | -46/+39 | |
2020-05-27 | Create build script temporary directory on demand | Karen Arutyunov | 3 | -25/+35 | |
2020-05-27 | Use dir_name_view for script environment working and sandbox directories | Karen Arutyunov | 4 | -44/+81 | |
2020-05-27 | Wrap up $<, $> variables and related ($target.path(), hashing, cleanup) | Boris Kolpackov | 1 | -1/+1 | |
2020-05-27 | Review (temp dir) | Boris Kolpackov | 1 | -2/+2 | |
2020-05-27 | Add script command redirect aliases | Karen Arutyunov | 11 | -178/+441 | |
2020-05-27 | Make build script to create special files in temporary directory | Karen Arutyunov | 2 | -40/+91 | |
2020-05-27 | Complete dump(ostream,script::lines) | Karen Arutyunov | 2 | -35/+133 | |
2020-05-27 | Implement build script variable hashing | Boris Kolpackov | 1 | -2/+0 | |
2020-05-27 | Partially implement dump(ostream,script::lines) | Karen Arutyunov | 1 | -7/+22 | |
2020-05-27 | Set proper build script command default redirects | Karen Arutyunov | 4 | -96/+236 | |
Also add printing of set and exit pseudo-builtin command arguments for verb >= 2 as we do for normal builtins. | |||||
2020-05-27 | Integrate buildscript running into recipe default_action() | Boris Kolpackov | 1 | -25/+25 | |
2020-05-27 | Integrate buildscript pre-parsing into recipe parsing | Boris Kolpackov | 1 | -1/+1 | |
2020-05-27 | Make build script variable pool local to execution environment | Boris Kolpackov | 2 | -4/+28 | |
2020-05-27 | Add dump(ostream,script::lines) (partial implementation) | Karen Arutyunov | 5 | -5/+76 | |
2020-05-27 | Factor out generic script parsing/executing functionality from ↵ | Karen Arutyunov | 21 | -0/+8522 | |
build2::test::script namespace |