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

Unified Diff: Source/bindings/scripts/unstable/v8_attributes.py

Issue 68893018: Rename es => exceptionState in bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « Source/bindings/scripts/code_generator_v8.pm ('k') | Source/bindings/scripts/unstable/v8_methods.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/unstable/v8_attributes.py
diff --git a/Source/bindings/scripts/unstable/v8_attributes.py b/Source/bindings/scripts/unstable/v8_attributes.py
index 4fde09c05411a95f629012b77340f85bbfe4d5b7..78ca52cc270ff269483d27ee8602474b1763421f 100644
--- a/Source/bindings/scripts/unstable/v8_attributes.py
+++ b/Source/bindings/scripts/unstable/v8_attributes.py
@@ -155,7 +155,7 @@ def getter_expression(interface, attribute, contents):
if attribute.is_nullable:
arguments.append('isNull')
if contents['is_getter_raises_exception']:
- arguments.append('es')
+ arguments.append('exceptionState')
if attribute.idl_type == 'EventHandler':
arguments.append('isolatedWorldForIsolate(info.GetIsolate())')
return '%s(%s)' % (getter_name, ', '.join(arguments))
@@ -250,7 +250,7 @@ def setter_expression(interface, attribute, contents):
else:
arguments.append('cppValue')
if contents['is_setter_raises_exception']:
- arguments.append('es')
+ arguments.append('exceptionState')
return '%s(%s)' % (setter_name, ', '.join(arguments))
« no previous file with comments | « Source/bindings/scripts/code_generator_v8.pm ('k') | Source/bindings/scripts/unstable/v8_methods.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698