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

Side by Side Diff: Source/bindings/tests/results/core/V8TestDictionaryDerived.cpp

Issue 768793002: Revert of IDL: Null values should be converted for non-nullable dictionary members (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 "V8TestDictionaryDerived.h" 8 #include "V8TestDictionaryDerived.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 10 matching lines...) Expand all
21 return; 21 return;
22 } 22 }
23 23
24 V8TestDictionary::toImpl(isolate, v8Value, impl, exceptionState); 24 V8TestDictionary::toImpl(isolate, v8Value, impl, exceptionState);
25 if (exceptionState.hadException()) 25 if (exceptionState.hadException())
26 return; 26 return;
27 27
28 v8::Local<v8::Object> v8Object = v8Value->ToObject(isolate); 28 v8::Local<v8::Object> v8Object = v8Value->ToObject(isolate);
29 v8::TryCatch block; 29 v8::TryCatch block;
30 v8::Local<v8::Value> derivedStringMemberValue = v8Object->Get(v8String(isola te, "derivedStringMember")); 30 v8::Local<v8::Value> derivedStringMemberValue = v8Object->Get(v8String(isola te, "derivedStringMember"));
31 if (block.HasCaught()) { 31 if (!derivedStringMemberValue.IsEmpty() && !isUndefinedOrNull(derivedStringM emberValue)) {
32 TOSTRING_VOID(V8StringResource<>, derivedStringMember, derivedStringMemb erValue);
33 impl.setDerivedStringMember(derivedStringMember);
34 } else if (block.HasCaught()) {
32 exceptionState.rethrowV8Exception(block.Exception()); 35 exceptionState.rethrowV8Exception(block.Exception());
33 return; 36 return;
34 } 37 }
35 if (derivedStringMemberValue.IsEmpty() || derivedStringMemberValue->IsUndefi ned()) {
36 // Do nothing.
37 } else {
38 TOSTRING_VOID(V8StringResource<>, derivedStringMember, derivedStringMemb erValue);
39 impl.setDerivedStringMember(derivedStringMember);
40 }
41 38
42 v8::Local<v8::Value> derivedStringMemberWithDefaultValue = v8Object->Get(v8S tring(isolate, "derivedStringMemberWithDefault")); 39 v8::Local<v8::Value> derivedStringMemberWithDefaultValue = v8Object->Get(v8S tring(isolate, "derivedStringMemberWithDefault"));
43 if (block.HasCaught()) { 40 if (!derivedStringMemberWithDefaultValue.IsEmpty() && !isUndefinedOrNull(der ivedStringMemberWithDefaultValue)) {
41 TOSTRING_VOID(V8StringResource<>, derivedStringMemberWithDefault, derive dStringMemberWithDefaultValue);
42 impl.setDerivedStringMemberWithDefault(derivedStringMemberWithDefault);
43 } else if (block.HasCaught()) {
44 exceptionState.rethrowV8Exception(block.Exception()); 44 exceptionState.rethrowV8Exception(block.Exception());
45 return; 45 return;
46 } 46 }
47 if (derivedStringMemberWithDefaultValue.IsEmpty() || derivedStringMemberWith DefaultValue->IsUndefined()) {
48 // Do nothing.
49 } else {
50 TOSTRING_VOID(V8StringResource<>, derivedStringMemberWithDefault, derive dStringMemberWithDefaultValue);
51 impl.setDerivedStringMemberWithDefault(derivedStringMemberWithDefault);
52 }
53 47
54 } 48 }
55 49
56 v8::Handle<v8::Value> toV8(const TestDictionaryDerivedImplementedAs& impl, v8::H andle<v8::Object> creationContext, v8::Isolate* isolate) 50 v8::Handle<v8::Value> toV8(const TestDictionaryDerivedImplementedAs& impl, v8::H andle<v8::Object> creationContext, v8::Isolate* isolate)
57 { 51 {
58 v8::Handle<v8::Object> v8Object = v8::Object::New(isolate); 52 v8::Handle<v8::Object> v8Object = v8::Object::New(isolate);
59 toV8TestDictionary(impl, v8Object, creationContext, isolate); 53 toV8TestDictionary(impl, v8Object, creationContext, isolate);
60 toV8TestDictionaryDerivedImplementedAs(impl, v8Object, creationContext, isol ate); 54 toV8TestDictionaryDerivedImplementedAs(impl, v8Object, creationContext, isol ate);
61 return v8Object; 55 return v8Object;
62 } 56 }
(...skipping 19 matching lines...) Expand all
82 } 76 }
83 77
84 TestDictionaryDerivedImplementedAs NativeValueTraits<TestDictionaryDerivedImplem entedAs>::nativeValue(const v8::Handle<v8::Value>& value, v8::Isolate* isolate, ExceptionState& exceptionState) 78 TestDictionaryDerivedImplementedAs NativeValueTraits<TestDictionaryDerivedImplem entedAs>::nativeValue(const v8::Handle<v8::Value>& value, v8::Isolate* isolate, ExceptionState& exceptionState)
85 { 79 {
86 TestDictionaryDerivedImplementedAs impl; 80 TestDictionaryDerivedImplementedAs impl;
87 V8TestDictionaryDerivedImplementedAs::toImpl(isolate, value, impl, exception State); 81 V8TestDictionaryDerivedImplementedAs::toImpl(isolate, value, impl, exception State);
88 return impl; 82 return impl;
89 } 83 }
90 84
91 } // namespace blink 85 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698