OLD | NEW |
1 // Copyright (C) 2012 Jeffrey Arnold | 1 // Copyright (C) 2012 Jeffrey Arnold |
2 // | 2 // |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
6 // | 6 // |
7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
8 // | 8 // |
9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 27 matching lines...) Expand all Loading... |
38 // macros | 38 // macros |
39 [PR['PR_KEYWORD'], /^\\[a-zA-Z@]+/], | 39 [PR['PR_KEYWORD'], /^\\[a-zA-Z@]+/], |
40 // highlighted as macros, since technically they are | 40 // highlighted as macros, since technically they are |
41 [PR['PR_KEYWORD'], /^#(?:ifn?def|endif)/ ], | 41 [PR['PR_KEYWORD'], /^#(?:ifn?def|endif)/ ], |
42 // catch escaped brackets | 42 // catch escaped brackets |
43 [PR['PR_PLAIN'], /^\\[{}]/], | 43 [PR['PR_PLAIN'], /^\\[{}]/], |
44 // punctuation | 44 // punctuation |
45 [PR['PR_PUNCTUATION'], /^[{}()\[\]]+/] | 45 [PR['PR_PUNCTUATION'], /^[{}()\[\]]+/] |
46 ]), | 46 ]), |
47 ['Rd', 'rd']); | 47 ['Rd', 'rd']); |
OLD | NEW |