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

Unified Diff: lib/html/scripts/generator.py

Issue 11234062: Make endianness named argument for DataView accessors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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: lib/html/scripts/generator.py
diff --git a/lib/html/scripts/generator.py b/lib/html/scripts/generator.py
index ffbd6b65a35e7e824728326a08125b7aa89dff04..a7332a9e5ba5882f4b1f143d258a8147262bbed1 100644
--- a/lib/html/scripts/generator.py
+++ b/lib/html/scripts/generator.py
@@ -35,6 +35,22 @@ def IsPureInterface(interface_name):
_methods_with_named_formals = set([
+ 'DataView.getFloat32',
+ 'DataView.getFloat64',
+ 'DataView.getInt16',
+ 'DataView.getInt32',
+ 'DataView.getInt8',
+ 'DataView.getUint16',
+ 'DataView.getUint32',
+ 'DataView.getUint8',
+ 'DataView.setFloat32',
+ 'DataView.setFloat64',
+ 'DataView.setInt16',
+ 'DataView.setInt32',
+ 'DataView.setInt8',
+ 'DataView.setUint16',
+ 'DataView.setUint32',
+ 'DataView.setUint8',
'DirectoryEntry.getDirectory',
'DirectoryEntry.getFile',
])

Powered by Google App Engine
This is Rietveld 408576698