OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart 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 file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "platform/globals.h" | 5 #include "platform/globals.h" |
6 | 6 |
7 #include "vm/isolate.h" | 7 #include "vm/isolate.h" |
8 #include "vm/object.h" | 8 #include "vm/object.h" |
9 #include "vm/regexp.h" | 9 #include "vm/regexp.h" |
10 #include "vm/regexp_assembler_ir.h" | 10 #include "vm/regexp_assembler_ir.h" |
11 #include "vm/unit_test.h" | 11 #include "vm/unit_test.h" |
12 | 12 |
13 namespace dart { | 13 namespace dart { |
14 | 14 |
15 static RawArray* Match(const String& pat, const String& str) { | 15 static RawArray* Match(const String& pat, const String& str) { |
16 Thread* thread = Thread::Current(); | 16 Thread* thread = Thread::Current(); |
17 Zone* zone = thread->zone(); | 17 Zone* zone = thread->zone(); |
18 const RegExp& regexp = | 18 const RegExp& regexp = |
19 RegExp::Handle(RegExpEngine::CreateRegExp(thread, pat, false, false)); | 19 RegExp::Handle(RegExpEngine::CreateRegExp(thread, pat, false, false)); |
20 const Smi& idx = Smi::Handle(Smi::New(0)); | 20 const Smi& idx = Smi::Handle(Smi::New(0)); |
21 return IRRegExpMacroAssembler::Execute(regexp, str, idx, zone); | 21 return IRRegExpMacroAssembler::Execute(regexp, str, idx, /*sticky=*/false, |
| 22 zone); |
22 } | 23 } |
23 | 24 |
24 TEST_CASE(RegExp_OneByteString) { | 25 TEST_CASE(RegExp_OneByteString) { |
25 uint8_t chars[] = {'a', 'b', 'c', 'b', 'a'}; | 26 uint8_t chars[] = {'a', 'b', 'c', 'b', 'a'}; |
26 intptr_t len = ARRAY_SIZE(chars); | 27 intptr_t len = ARRAY_SIZE(chars); |
27 const String& str = | 28 const String& str = |
28 String::Handle(OneByteString::New(chars, len, Heap::kNew)); | 29 String::Handle(OneByteString::New(chars, len, Heap::kNew)); |
29 | 30 |
30 const String& pat = String::Handle(String::New("bc")); | 31 const String& pat = String::Handle(String::New("bc")); |
31 const Array& res = Array::Handle(Match(pat, str)); | 32 const Array& res = Array::Handle(Match(pat, str)); |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 EXPECT(res_1.IsSmi()); | 100 EXPECT(res_1.IsSmi()); |
100 EXPECT(res_2.IsSmi()); | 101 EXPECT(res_2.IsSmi()); |
101 | 102 |
102 const Smi& smi_1 = Smi::Cast(res_1); | 103 const Smi& smi_1 = Smi::Cast(res_1); |
103 const Smi& smi_2 = Smi::Cast(res_2); | 104 const Smi& smi_2 = Smi::Cast(res_2); |
104 EXPECT_EQ(1, smi_1.Value()); | 105 EXPECT_EQ(1, smi_1.Value()); |
105 EXPECT_EQ(3, smi_2.Value()); | 106 EXPECT_EQ(3, smi_2.Value()); |
106 } | 107 } |
107 | 108 |
108 } // namespace dart | 109 } // namespace dart |
OLD | NEW |