OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 part of dart.core_patch; | 5 part of dart.core_patch; |
6 | 6 |
7 ToUpperConverter toUpper; | 7 ToUpperConverter toUpper; |
8 ToLowerConverter toLower; | 8 ToLowerConverter toLower; |
9 RegExpCanonicalizer regExpCanonicalize; | 9 RegExpCanonicalizer regExpCanonicalize; |
10 RegExpEquivalenceClasses regExpEquivalenceClasses; | 10 RegExpEquivalenceClasses regExpEquivalenceClasses; |
11 | 11 |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 } else { | 529 } else { |
530 // opCode == loadR. | 530 // opCode == loadR. |
531 rightReg = argument; | 531 rightReg = argument; |
532 } | 532 } |
533 } | 533 } |
534 extendReg = 0; | 534 extendReg = 0; |
535 } | 535 } |
536 } | 536 } |
537 } | 537 } |
538 } | 538 } |
OLD | NEW |