Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp

Issue 349523004: IDL: Generate all constructor callbacks with the same template macro (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix arity check Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
6 6
7 #include "config.h" 7 #include "config.h"
8 #include "V8TestInterfaceNamedConstructor2.h" 8 #include "V8TestInterfaceNamedConstructor2.h"
9 9
10 #include "bindings/v8/ExceptionState.h" 10 #include "bindings/v8/ExceptionState.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 v8::Isolate* isolate = info.GetIsolate(); 52 v8::Isolate* isolate = info.GetIsolate();
53 if (!info.IsConstructCall()) { 53 if (!info.IsConstructCall()) {
54 throwTypeError(ExceptionMessages::constructorNotCallableAsFunction("Audi o"), isolate); 54 throwTypeError(ExceptionMessages::constructorNotCallableAsFunction("Audi o"), isolate);
55 return; 55 return;
56 } 56 }
57 57
58 if (ConstructorMode::current(isolate) == ConstructorMode::WrapExistingObject ) { 58 if (ConstructorMode::current(isolate) == ConstructorMode::WrapExistingObject ) {
59 v8SetReturnValue(info, info.Holder()); 59 v8SetReturnValue(info, info.Holder());
60 return; 60 return;
61 } 61 }
62
63 Document& document = *toDocument(currentExecutionContext(isolate));
64
65 if (UNLIKELY(info.Length() < 1)) { 62 if (UNLIKELY(info.Length() < 1)) {
66 throwMinimumArityTypeErrorForConstructor("TestInterfaceNamedConstructor2 ", 1, info.Length(), info.GetIsolate()); 63 throwMinimumArityTypeErrorForConstructor("TestInterfaceNamedConstructor2 ", 1, info.Length(), info.GetIsolate());
67 return; 64 return;
68 } 65 }
69 V8StringResource<> stringArg; 66 V8StringResource<> stringArg;
70 { 67 {
71 TOSTRING_VOID_INTERNAL(stringArg, info[0]); 68 TOSTRING_VOID_INTERNAL(stringArg, info[0]);
72 } 69 }
73 RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2 ::createForJSConstructor(stringArg); 70 RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2 ::createForJSConstructor(stringArg);
74 71
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 fromInternalPointer(object)->deref(); 161 fromInternalPointer(object)->deref();
165 } 162 }
166 163
167 template<> 164 template<>
168 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han dle<v8::Object> creationContext, v8::Isolate* isolate) 165 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNamedConstructor2* impl, v8::Han dle<v8::Object> creationContext, v8::Isolate* isolate)
169 { 166 {
170 return toV8(impl, creationContext, isolate); 167 return toV8(impl, creationContext, isolate);
171 } 168 }
172 169
173 } // namespace WebCore 170 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698