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

Side by Side Diff: client/dom/scripts/idlnode_test.py

Issue 9152018: Remove everything to do with snippets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/dom/scripts/idlnode.py ('k') | client/dom/scripts/idlparser.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 import idlnode 6 import idlnode
7 import idlparser 7 import idlparser
8 import logging.config 8 import logging.config
9 import sys 9 import sys
10 import unittest 10 import unittest
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 @Ano3 const int someConst = 0; 134 @Ano3 const int someConst = 0;
135 };''', 135 };''',
136 {'interfaces': [{'operations': [{'type': {'id': 'void'}, 'id': 'someOp', ' annotations': {'Ano3': {}}}], 'attributes': [{'type': {'id': 'int'}, 'id': 'some Attr', 'annotations': {'Ano2': {}}}], 'parents': [{'type': {'id': 'J'}, 'annotat ions': {'Ano1': {}}}], 'id': 'I', 'constants': [{'type': {'id': 'int'}, 'annotat ions': {'Ano3': {}}, 'value': '0', 'id': 'someConst'}]}]}) 136 {'interfaces': [{'operations': [{'type': {'id': 'void'}, 'id': 'someOp', ' annotations': {'Ano3': {}}}], 'attributes': [{'type': {'id': 'int'}, 'id': 'some Attr', 'annotations': {'Ano2': {}}}], 'parents': [{'type': {'id': 'J'}, 'annotat ions': {'Ano1': {}}}], 'id': 'I', 'constants': [{'type': {'id': 'int'}, 'annotat ions': {'Ano3': {}}, 'value': '0', 'id': 'someConst'}]}]})
137 137
138 def test_inheritance(self): 138 def test_inheritance(self):
139 self._run_test( 139 self._run_test(
140 None, 140 None,
141 'interface Shape {}; interface Rectangle : Shape {}; interface Square : Re ctangle, Shape {};', 141 'interface Shape {}; interface Rectangle : Shape {}; interface Square : Re ctangle, Shape {};',
142 {'interfaces': [{'id': 'Shape'}, {'parents': [{'type': {'id': 'Shape'}}], 'id': 'Rectangle'}, {'parents': [{'type': {'id': 'Rectangle'}}, {'type': {'id': 'Shape'}}], 'id': 'Square'}]}) 142 {'interfaces': [{'id': 'Shape'}, {'parents': [{'type': {'id': 'Shape'}}], 'id': 'Rectangle'}, {'parents': [{'type': {'id': 'Rectangle'}}, {'type': {'id': 'Shape'}}], 'id': 'Square'}]})
143 143
144 def test_snippets(self):
145 self._run_test(
146 idlparser.FREMONTCUT_SYNTAX,
147 '''interface I {
148 snippet {bla bla bla bla};
149 };''',
150 {'interfaces': [{'id': 'I', 'snippets': [{'text': 'bla bla bla bla'}]}]})
151
152 if __name__ == "__main__": 144 if __name__ == "__main__":
153 logging.config.fileConfig("logging.conf") 145 logging.config.fileConfig("logging.conf")
154 if __name__ == '__main__': 146 if __name__ == '__main__':
155 unittest.main() 147 unittest.main()
OLDNEW
« no previous file with comments | « client/dom/scripts/idlnode.py ('k') | client/dom/scripts/idlparser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698