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 "lib/invocation_mirror.h" | 5 #include "lib/invocation_mirror.h" |
6 #include "vm/bootstrap_natives.h" | 6 #include "vm/bootstrap_natives.h" |
7 #include "vm/class_finalizer.h" | 7 #include "vm/class_finalizer.h" |
8 #include "vm/compiler.h" | 8 #include "vm/compiler.h" |
9 #include "vm/dart_entry.h" | 9 #include "vm/dart_entry.h" |
10 #include "vm/exceptions.h" | 10 #include "vm/exceptions.h" |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
122 const intptr_t implicit_param_count = func.NumImplicitParameters(); | 122 const intptr_t implicit_param_count = func.NumImplicitParameters(); |
123 const intptr_t non_implicit_param_count = func.NumParameters() - | 123 const intptr_t non_implicit_param_count = func.NumParameters() - |
124 implicit_param_count; | 124 implicit_param_count; |
125 const intptr_t index_of_first_optional_param = | 125 const intptr_t index_of_first_optional_param = |
126 non_implicit_param_count - func.NumOptionalParameters(); | 126 non_implicit_param_count - func.NumOptionalParameters(); |
127 const intptr_t index_of_first_named_param = | 127 const intptr_t index_of_first_named_param = |
128 non_implicit_param_count - func.NumOptionalNamedParameters(); | 128 non_implicit_param_count - func.NumOptionalNamedParameters(); |
129 const Array& results = Array::Handle(Array::New(non_implicit_param_count)); | 129 const Array& results = Array::Handle(Array::New(non_implicit_param_count)); |
130 const Array& args = Array::Handle(Array::New(9)); | 130 const Array& args = Array::Handle(Array::New(9)); |
131 | 131 |
132 // Return for synthetic functions and getters. | 132 if (func.IsForwardingConstructor()) { |
hausner
2014/03/27 17:10:27
Curious: why don't you do this test at the beginni
| |
133 if (func.IsGetterFunction() || | 133 // Forwarding constructors for mixin applications don't have any source to |
134 func.IsImplicitConstructor() || | 134 // parse, but they do have parameters. Use the names/types/metadata from |
135 func.IsImplicitGetterFunction() || | 135 // constructor that we are forwarding to. We will probably have to revisit |
136 func.IsImplicitSetterFunction()) { | 136 // this when restrictions on constructors in mixins are relaxed. |
137 const Function& target = Function::Handle(func.ForwardingTarget()); | |
138 ASSERT(!target.IsNull()); | |
139 return CreateParameterMirrorList(target, owner_mirror); | |
140 } | |
141 | |
142 if (func.IsGetterFunction() || func.IsImplicitConstructor()) { | |
143 // These have no parameters. | |
144 ASSERT(results.Length() == 0); | |
137 return results.raw(); | 145 return results.raw(); |
138 } | 146 } |
139 | 147 |
140 Smi& pos = Smi::Handle(); | 148 Smi& pos = Smi::Handle(); |
141 String& name = String::Handle(); | 149 String& name = String::Handle(); |
142 Instance& param = Instance::Handle(); | 150 Instance& param = Instance::Handle(); |
143 Bool& is_final = Bool::Handle(); | 151 Bool& is_final = Bool::Handle(); |
144 Object& default_value = Object::Handle(); | 152 Object& default_value = Object::Handle(); |
145 Object& metadata = Object::Handle(); | 153 Object& metadata = Object::Handle(); |
146 | 154 |
(...skipping 2083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2230 } | 2238 } |
2231 | 2239 |
2232 DEFINE_NATIVE_ENTRY(TypeMirror_moreSpecificTest, 2) { | 2240 DEFINE_NATIVE_ENTRY(TypeMirror_moreSpecificTest, 2) { |
2233 GET_NON_NULL_NATIVE_ARGUMENT(AbstractType, a, arguments->NativeArgAt(0)); | 2241 GET_NON_NULL_NATIVE_ARGUMENT(AbstractType, a, arguments->NativeArgAt(0)); |
2234 GET_NON_NULL_NATIVE_ARGUMENT(AbstractType, b, arguments->NativeArgAt(1)); | 2242 GET_NON_NULL_NATIVE_ARGUMENT(AbstractType, b, arguments->NativeArgAt(1)); |
2235 return Bool::Get(a.IsMoreSpecificThan(b, NULL)).raw(); | 2243 return Bool::Get(a.IsMoreSpecificThan(b, NULL)).raw(); |
2236 } | 2244 } |
2237 | 2245 |
2238 | 2246 |
2239 } // namespace dart | 2247 } // namespace dart |
OLD | NEW |