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

Unified Diff: Source/bindings/templates/attributes.cpp

Issue 357413003: IDL: Drop redundant null check for string and wrapper type attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: Source/bindings/templates/attributes.cpp
diff --git a/Source/bindings/templates/attributes.cpp b/Source/bindings/templates/attributes.cpp
index 38d047971442fef63ec107232ee2ddbb9216557a..4da5ee6bccfb5b746821de8b8241f0c031be23eb 100644
--- a/Source/bindings/templates/attributes.cpp
+++ b/Source/bindings/templates/attributes.cpp
@@ -69,12 +69,8 @@ const v8::PropertyCallbackInfo<v8::Value>& info
attribute.cpp_value)
| indent}}
{% endif %}
- {% if attribute.is_nullable %}
- {% if attribute.is_nullable_simple %}
- if (!{{attribute.cpp_value}}) {
- {% else %}
+ {% if attribute.is_nullable and not attribute.is_nullable_simple %}
if (isNull) {
- {% endif %}
v8SetReturnValueNull(info);
return;
}

Powered by Google App Engine
This is Rietveld 408576698