OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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/assert.h" | 5 #include "platform/assert.h" |
6 #include "vm/bootstrap_natives.h" | 6 #include "vm/bootstrap_natives.h" |
7 #include "vm/exceptions.h" | 7 #include "vm/exceptions.h" |
8 #include "vm/native_entry.h" | 8 #include "vm/native_entry.h" |
9 #include "vm/object.h" | 9 #include "vm/object.h" |
10 | 10 |
11 #include "lib/regexp_jsc.h" | 11 #include "lib/regexp_jsc.h" |
12 | 12 |
13 namespace dart { | 13 namespace dart { |
14 | 14 |
15 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_factory, 4) { | 15 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_factory, 4) { |
16 ASSERT(AbstractTypeArguments::CheckedHandle( | 16 ASSERT(TypeArguments::CheckedHandle(arguments->NativeArgAt(0)).IsNull()); |
17 arguments->NativeArgAt(0)).IsNull()); | |
18 GET_NON_NULL_NATIVE_ARGUMENT(String, pattern, arguments->NativeArgAt(1)); | 17 GET_NON_NULL_NATIVE_ARGUMENT(String, pattern, arguments->NativeArgAt(1)); |
19 GET_NON_NULL_NATIVE_ARGUMENT( | 18 GET_NON_NULL_NATIVE_ARGUMENT( |
20 Instance, handle_multi_line, arguments->NativeArgAt(2)); | 19 Instance, handle_multi_line, arguments->NativeArgAt(2)); |
21 GET_NON_NULL_NATIVE_ARGUMENT( | 20 GET_NON_NULL_NATIVE_ARGUMENT( |
22 Instance, handle_case_sensitive, arguments->NativeArgAt(3)); | 21 Instance, handle_case_sensitive, arguments->NativeArgAt(3)); |
23 bool ignore_case = handle_case_sensitive.raw() != Bool::True().raw(); | 22 bool ignore_case = handle_case_sensitive.raw() != Bool::True().raw(); |
24 bool multi_line = handle_multi_line.raw() == Bool::True().raw(); | 23 bool multi_line = handle_multi_line.raw() == Bool::True().raw(); |
25 return Jscre::Compile(pattern, multi_line, ignore_case); | 24 return Jscre::Compile(pattern, multi_line, ignore_case); |
26 } | 25 } |
27 | 26 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 65 |
67 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_ExecuteMatch, 3) { | 66 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_ExecuteMatch, 3) { |
68 const JSRegExp& regexp = JSRegExp::CheckedHandle(arguments->NativeArgAt(0)); | 67 const JSRegExp& regexp = JSRegExp::CheckedHandle(arguments->NativeArgAt(0)); |
69 ASSERT(!regexp.IsNull()); | 68 ASSERT(!regexp.IsNull()); |
70 GET_NON_NULL_NATIVE_ARGUMENT(String, str, arguments->NativeArgAt(1)); | 69 GET_NON_NULL_NATIVE_ARGUMENT(String, str, arguments->NativeArgAt(1)); |
71 GET_NON_NULL_NATIVE_ARGUMENT(Smi, start_index, arguments->NativeArgAt(2)); | 70 GET_NON_NULL_NATIVE_ARGUMENT(Smi, start_index, arguments->NativeArgAt(2)); |
72 return Jscre::Execute(regexp, str, start_index.Value()); | 71 return Jscre::Execute(regexp, str, start_index.Value()); |
73 } | 72 } |
74 | 73 |
75 } // namespace dart | 74 } // namespace dart |
OLD | NEW |