index
:
~cworth/glcpp
master
take-2
"C" pre-processor for GLSL
cworth
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Age
Commit message (
Expand
)
Author
Files
Lines
2010-06-09
Merge remote branch 'kwg/fixes'
HEAD
master
Carl Worth
1
-0
/
+20
2010-06-04
Disallow defining macros whose names start with "__" or "GL_".
Kenneth Graunke
1
-0
/
+20
2010-06-02
test suite: Add expected output for every test.
Carl Worth
70
-8
/
+384
2010-06-02
Restore error message for a macro with unbalanced parentheses.
Carl Worth
1
-1
/
+4
2010-06-02
Eliminate some recursion from children of _expand_token_list
Carl Worth
2
-57
/
+110
2010-06-02
Remove dead code: _glcpp_parser_expand_token_list_onto
Carl Worth
1
-10
/
+0
2010-06-02
Factor out common sub-expression from multi-line-comment regular expression.
Carl Worth
1
-1
/
+3
2010-06-02
Make the multi-line comment regular expression a bit easier to read.
Carl Worth
1
-1
/
+1
2010-06-02
Fix multi-line comment regular expression to handle (non) nested comments.
Carl Worth
2
-1
/
+6
2010-06-01
Implement comment handling in the lexer (with test).
Carl Worth
3
-2
/
+28
2010-06-01
Fix #if-skipping to *really* skip the skipped group.
Carl Worth
4
-25
/
+44
2010-05-29
Merge branch 'take-2'
Carl Worth
8
-616
/
+1106
2010-05-29
Add three more tests cases recently added to the take-2 branch.
Carl Worth
3
-0
/
+20
2010-05-29
Add killer test case from the C99 specification.
Carl Worth
1
-0
/
+17
2010-05-29
Add test and fix bugs with multiple token-pasting on the same line.
Carl Worth
2
-51
/
+43
2010-05-29
Fix pass-through of '=' and add a test for it.
Carl Worth
3
-1
/
+3
2010-05-28
Add two more (failing) tests from the take-2 branch.
Carl Worth
2
-0
/
+8
2010-05-28
Add two (passing) tests from the take-2 branch.
Carl Worth
2
-0
/
+6
2010-05-28
Tweak test 25 slightly, (so the non-macro doesn't end the file).
Carl Worth
1
-1
/
+1
2010-05-28
Remove some blank lines from the end of some test cases.
Carl Worth
3
-4
/
+0
2010-05-28
Perform macro by replacing tokens in original list.
take-2
Carl Worth
3
-99
/
+187
2010-05-28
Simplify calling conventions of functions under expand_token_list_onto.
Carl Worth
1
-85
/
+74
2010-05-28
Stop interrupting the test suite at the first failure.
Carl Worth
1
-1
/
+0
2010-05-28
Revert "Add support for an object-to-function chain with the parens in the co...
Carl Worth
1
-49
/
+16
2010-05-27
Remove blank lines from output files before comparing.
Carl Worth
2
-3
/
+5
2010-05-27
Add test for token-pasting of integers.
Carl Worth
1
-0
/
+4
2010-05-27
Implement token pasting of integers.
Carl Worth
4
-17
/
+33
2010-05-27
Add placeholder tokens to support pasting with empty arguments.
Carl Worth
2
-6
/
+35
2010-05-27
Add test for macro invocations with empty arguments.
Carl Worth
1
-0
/
+6
2010-05-27
Provide support for empty arguments in macro invocations.
Carl Worth
2
-9
/
+17
2010-05-27
Make two list-processing functions do nothing with an empty list.
Carl Worth
1
-1
/
+4
2010-05-27
Add test 56 for a comma within the expansion of an argument.
Carl Worth
1
-0
/
+4
2010-05-27
Avoid treating an expanded comma as an argument separator.
Carl Worth
2
-2
/
+20
2010-05-26
Add support (and test) for an object-to-function chain with the parens in the...
Carl Worth
2
-16
/
+52
2010-05-26
Add two tests developed on the take-2 branch.
Carl Worth
2
-0
/
+37
2010-05-26
Treat newlines as space when invoking a function-like macro invocation.
Carl Worth
5
-3
/
+67
2010-05-26
All macro lookups should be of type macro_t, not string_list_t.
Carl Worth
1
-4
/
+4
2010-05-26
Implement (and test) support for macro expansion within conditional expressions.
Carl Worth
3
-22
/
+169
2010-05-26
Fix lexing of "defined" as an operator, not an identifier.
Carl Worth
2
-7
/
+5
2010-05-26
Implement #if and friends.
Carl Worth
4
-5
/
+2
2010-05-26
stash
Carl Worth
2
-5
/
+176
2010-05-26
Implement token pasting.
Carl Worth
1
-0
/
+117
2010-05-26
Rename identifier from 'i' to 'node'.
Carl Worth
1
-5
/
+5
2010-05-26
Remove some stale token types.
Carl Worth
1
-3
/
+0
2010-05-26
Prevent unexpanded macros from being expanded again in the future.
Carl Worth
1
-2
/
+11
2010-05-26
README: Document some known limitations.
Carl Worth
1
-0
/
+12
2010-05-26
Fix a typo in a comment.
Carl Worth
1
-1
/
+1
2010-05-26
Expand macro arguments before performing argument substitution.
Carl Worth
1
-4
/
+5
2010-05-26
Change macro expansion to append onto token lists rather than printing directly.
Carl Worth
1
-73
/
+120
2010-05-26
Check active expansions before expanding a function-like macro invocation.
Carl Worth
1
-5
/
+5
[next]