OLD | NEW |
1 // Copyright (C) 2009 Google Inc. | 1 // Copyright (C) 2009 Google Inc. |
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // ascSmall -> a | b | ... | z | 92 // ascSmall -> a | b | ... | z |
93 // uniSmall -> any Unicode lowercase letter | 93 // uniSmall -> any Unicode lowercase letter |
94 // large -> ascLarge | uniLarge | 94 // large -> ascLarge | uniLarge |
95 // ascLarge -> A | B | ... | Z | 95 // ascLarge -> A | B | ... | Z |
96 // uniLarge -> any uppercase or titlecase Unicode letter | 96 // uniLarge -> any uppercase or titlecase Unicode letter |
97 [PR['PR_PLAIN'], /^(?:[A-Z][\w\']*\.)*[a-zA-Z][\w\']*/], | 97 [PR['PR_PLAIN'], /^(?:[A-Z][\w\']*\.)*[a-zA-Z][\w\']*/], |
98 // matches the symbol production | 98 // matches the symbol production |
99 [PR['PR_PUNCTUATION'], /^[^\t\n\x0B\x0C\r a-zA-Z0-9\'\"]+/] | 99 [PR['PR_PUNCTUATION'], /^[^\t\n\x0B\x0C\r a-zA-Z0-9\'\"]+/] |
100 ]), | 100 ]), |
101 ['hs']); | 101 ['hs']); |
OLD | NEW |