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 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 | 49 |
50 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_getGroupCount, 1) { | 50 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_getGroupCount, 1) { |
51 const JSRegExp& regexp = JSRegExp::CheckedHandle(arguments->NativeArgAt(0)); | 51 const JSRegExp& regexp = JSRegExp::CheckedHandle(arguments->NativeArgAt(0)); |
52 ASSERT(!regexp.IsNull()); | 52 ASSERT(!regexp.IsNull()); |
53 if (regexp.is_initialized()) { | 53 if (regexp.is_initialized()) { |
54 return regexp.num_bracket_expressions(); | 54 return regexp.num_bracket_expressions(); |
55 } | 55 } |
56 const String& pattern = String::Handle(regexp.pattern()); | 56 const String& pattern = String::Handle(regexp.pattern()); |
57 const String& errmsg = | 57 const String& errmsg = |
58 String::Handle(String::New("Regular expression is not initialized yet")); | 58 String::Handle(String::New("Regular expression is not initialized yet")); |
59 GrowableArray<const Object*> args; | 59 const Array& args = Array::Handle(Array::New(2)); |
60 args.Add(&pattern); | 60 args.SetAt(0, pattern); |
61 args.Add(&errmsg); | 61 args.SetAt(1, errmsg); |
62 Exceptions::ThrowByType(Exceptions::kIllegalJSRegExp, args); | 62 Exceptions::ThrowByType(Exceptions::kIllegalJSRegExp, args); |
63 return Object::null(); | 63 return Object::null(); |
64 } | 64 } |
65 | 65 |
66 | 66 |
67 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_ExecuteMatch, 3) { | 67 DEFINE_NATIVE_ENTRY(JSSyntaxRegExp_ExecuteMatch, 3) { |
68 const JSRegExp& regexp = JSRegExp::CheckedHandle(arguments->NativeArgAt(0)); | 68 const JSRegExp& regexp = JSRegExp::CheckedHandle(arguments->NativeArgAt(0)); |
69 ASSERT(!regexp.IsNull()); | 69 ASSERT(!regexp.IsNull()); |
70 GET_NON_NULL_NATIVE_ARGUMENT(String, str, arguments->NativeArgAt(1)); | 70 GET_NON_NULL_NATIVE_ARGUMENT(String, str, arguments->NativeArgAt(1)); |
71 GET_NON_NULL_NATIVE_ARGUMENT(Smi, start_index, arguments->NativeArgAt(2)); | 71 GET_NON_NULL_NATIVE_ARGUMENT(Smi, start_index, arguments->NativeArgAt(2)); |
72 return Jscre::Execute(regexp, str, start_index.Value()); | 72 return Jscre::Execute(regexp, str, start_index.Value()); |
73 } | 73 } |
74 | 74 |
75 } // namespace dart | 75 } // namespace dart |
OLD | NEW |