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

Unified Diff: client/dom/scripts/idlrenderer_test.py

Issue 9426043: Parse function-style extended attributes part #1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
« no previous file with comments | « client/dom/scripts/idlrenderer.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/idlrenderer_test.py
diff --git a/client/dom/scripts/idlrenderer_test.py b/client/dom/scripts/idlrenderer_test.py
index 53d8ab658ee0885e96d85f1821a896a96362af88..cbf509a725c6aaca262394684632466dd3488bc9 100755
--- a/client/dom/scripts/idlrenderer_test.py
+++ b/client/dom/scripts/idlrenderer_test.py
@@ -30,7 +30,7 @@ ACTUAL :
def test_rendering(self):
input_text = \
'''module M {
- interface I : @A J, K {
+ [Constructor(long x)] interface I : @A J, K {
attribute int attr;
readonly attribute long attr2;
getter attribute int get_attr;
@@ -47,7 +47,7 @@ ACTUAL :
expected_text = \
'''module M {
- interface I :
+ [Constructor(in long x)] interface I :
@A J,
K {
« no previous file with comments | « client/dom/scripts/idlrenderer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698