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

Unified Diff: tools/idl_parser/idl_ppapi_parser.py

Issue 2708173002: idl_parser: Add support for the record<K, V> WebIDL type. (Closed)
Patch Set: Created 3 years, 10 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: tools/idl_parser/idl_ppapi_parser.py
diff --git a/tools/idl_parser/idl_ppapi_parser.py b/tools/idl_parser/idl_ppapi_parser.py
index 8914c841997070902a33d98cac259485ad47187f..2556ffb47a694d7810aa2107f71296d86d9b4297 100755
--- a/tools/idl_parser/idl_ppapi_parser.py
+++ b/tools/idl_parser/idl_ppapi_parser.py
@@ -248,6 +248,18 @@ class IDLPPAPIParser(IDLParser):
""" """
pass
+ def p_StringType(self, p):
+ """ """
+ pass
+
+ def p_RecordType(self, p):
+ """ """
+ pass
+
+ def p_RecordTypeError(self, p):
+ """ """
+ pass
+
# We only support:
# [ identifier ]
# [ identifier ( ArgumentList )]

Powered by Google App Engine
This is Rietveld 408576698