Chromium Code Reviews| Index: ppapi/generators/test_lex.in |
| =================================================================== |
| --- ppapi/generators/test_lex.in (revision 90352) |
| +++ ppapi/generators/test_lex.in (working copy) |
| @@ -1,20 +1,26 @@ |
| INT 1 INT 123 INT 12345 |
| SYMBOL A123 SYMBOL A_A |
| -COMMENT //abc |
| -COMMENT // abc |
| -COMMENT // abc |
| -COMMENT //abc def |
| -COMMENT // abc def |
| -COMMENT // abc def |
| +COMMENT /*XXXX*/ |
| +COMMENT //XXXX |
| +[ [ |
| +] ] |
| +* * |
| +. . |
| +( ( |
| +) ) |
| +{ { |
| +} } |
| +[ [ |
| +] ] |
| +, , |
| +; ; |
| +: : |
| += = |
| ++ + |
| +- - |
| -COMMENT /*abc*/ COMMENT /* abc */ COMMENT /* abc |
| - */ |
| -COMMENT /* abc def */ COMMENT /* abc def |
| -*/ COMMENT // abc def |
| - |
| - |
| FLOAT 1.1 |
| FLOAT 1e1 |
| FLOAT -1.1 |
| @@ -37,3 +43,10 @@ |
| OCT 01 |
| OCT 0123 |
| +INLINE #inline C |
| +This is an inline block. |
| + |
| +Contains /* Comments */ |
|
sehr (please use chromium)
2011/06/29 16:43:06
Your matcher includes C-style comments that break
noelallen1
2011/06/29 18:59:01
Done.
|
| +Contains // Comments |
| +#endinl |
| + |