Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmGeneratorExpression: Tokenize over strings | Ben Boeckel | 2014-03-08 | 1 | -4/+2 |
| | |||||
* | cmGeneratorExpressionLexer: Use a switch statement to parse | Ben Boeckel | 2014-02-21 | 1 | -35/+35 |
| | | | | | | Optimize cmGeneratorExpressionLexer::Tokenize to use a switch statement. The many dereferences of the input pointer were expensive. Also remove excess pointer arithmetic. | ||||
* | cmGeneratorExpression: Re-write for multi-stage evaluation | Stephen Kelly | 2012-09-18 | 1 | -0/+85 |
The expressions may be parsed and then cached and evaluated multiple times. They are evaluated lazily so that literals such as ',' can be treated as universal parameter separators, and can be processed from results without appearing literally, and without interfering with the parsing/evaluation of the entire expression. |