Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-09-09 | Add support for evaluation context | Boris Kolpackov | 1 | -29/+21 | |
For now it acts as just the value mode that can be enabled anywhere variable expansion is supported, for example: (foo=bar): And the primary use currently is to enable/test quoted and indirect variable expansion: "foo bar" = FOO BAR print $"foo bar" # Invalid. print $("foo bar") # Yeah, baby. foo = FOO FOO = foo print $($foo) Not that you should do something like this... | |||||
2015-09-09 | Reimplement double quote lexing to avoid "implied quote" trick | Boris Kolpackov | 1 | -6/+3 | |
2015-09-08 | Initial take on double quote support | Boris Kolpackov | 1 | -4/+9 | |
Currently, $(foo)-style variable expansion is not supported. | |||||
2015-09-08 | Use mode stack in lexer | Boris Kolpackov | 1 | -7/+27 | |
2015-09-08 | Implement single quote support | Boris Kolpackov | 1 | -1/+4 | |
2015-09-08 | Clean up lexer mode logic | Boris Kolpackov | 1 | -1/+3 | |
2015-07-13 | Add support for pair-enabled variables | Boris Kolpackov | 1 | -0/+3 | |
2015-06-18 | Add char-scanner to libbutl, use in libbpkg and build2 | Boris Kolpackov | 1 | -54/+5 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 1 | -1/+1 | |
2015-03-30 | Initial support for command line variables | Boris Kolpackov | 1 | -0/+3 | |
2015-03-30 | Add support for configurable pair separator, use @ instead of = in buildspec | Boris Kolpackov | 1 | -4/+10 | |
2015-03-09 | Add support for skipping already loaded/included buildfiles at top level | Boris Kolpackov | 1 | -2/+2 | |
The idea is that a buildfile shall be included/loaded only once for any given out_root. | |||||
2015-03-06 | Add support for lexing and parsing name pairs | Boris Kolpackov | 1 | -9/+21 | |
We will need it for the buildspec and also if/when we support map variable types. | |||||
2015-03-02 | Implement variable expansion | Boris Kolpackov | 1 | -2/+4 | |
2015-03-02 | Indicate whether token is separated from previous one by whitespaces | Boris Kolpackov | 1 | -14/+18 | |
2015-03-02 | Implement value lexing mode | Boris Kolpackov | 1 | -2/+9 | |
So that we can do foo=g++ without having to resort to quoting | |||||
2015-01-20 | Diagnostic infrastructure revamp | Boris Kolpackov | 1 | -11/+14 | |
2014-12-12 | Initial buildfile parser implementation | Boris Kolpackov | 1 | -5/+11 | |
g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx ../../../build/parser.cxx && ./driver | |||||
2014-12-12 | Add test for lexer | Boris Kolpackov | 1 | -0/+3 | |
g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx && ./driver | |||||
2014-12-11 | Initial lexer implementation for buildfiles | Boris Kolpackov | 1 | -0/+98 | |