| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 namespace v8 { namespace internal { | 31 namespace v8 { namespace internal { |
| 32 | 32 |
| 33 // Unicode character predicates as defined by ECMA-262, 3rd, | 33 // Unicode character predicates as defined by ECMA-262, 3rd, |
| 34 // used for lexical analysis. | 34 // used for lexical analysis. |
| 35 | 35 |
| 36 inline bool IsCarriageReturn(uc32 c); | 36 inline bool IsCarriageReturn(uc32 c); |
| 37 inline bool IsLineFeed(uc32 c); | 37 inline bool IsLineFeed(uc32 c); |
| 38 inline bool IsDecimalDigit(uc32 c); | 38 inline bool IsDecimalDigit(uc32 c); |
| 39 inline bool IsHexDigit(uc32 c); | 39 inline bool IsHexDigit(uc32 c); |
| 40 inline bool IsRegExpWord(uc32 c); |
| 41 inline bool IsRegExpNewline(uc32 c); |
| 40 | 42 |
| 41 struct IdentifierStart { | 43 struct IdentifierStart { |
| 42 static inline bool Is(uc32 c) { | 44 static inline bool Is(uc32 c) { |
| 43 switch (c) { | 45 switch (c) { |
| 44 case '$': case '_': case '\\': return true; | 46 case '$': case '_': case '\\': return true; |
| 45 default: return unibrow::Letter::Is(c); | 47 default: return unibrow::Letter::Is(c); |
| 46 } | 48 } |
| 47 } | 49 } |
| 48 }; | 50 }; |
| 49 | 51 |
| 50 | 52 |
| 51 struct IdentifierPart { | 53 struct IdentifierPart { |
| 52 static inline bool Is(uc32 c) { | 54 static inline bool Is(uc32 c) { |
| 53 return IdentifierStart::Is(c) | 55 return IdentifierStart::Is(c) |
| 54 || unibrow::Number::Is(c) | 56 || unibrow::Number::Is(c) |
| 55 || unibrow::CombiningMark::Is(c) | 57 || unibrow::CombiningMark::Is(c) |
| 56 || unibrow::ConnectorPunctuation::Is(c); | 58 || unibrow::ConnectorPunctuation::Is(c); |
| 57 } | 59 } |
| 58 }; | 60 }; |
| 59 | 61 |
| 60 } } // namespace v8::internal | 62 } } // namespace v8::internal |
| 61 | 63 |
| 62 #endif // V8_CHAR_PREDICATES_H_ | 64 #endif // V8_CHAR_PREDICATES_H_ |
| OLD | NEW |