| OLD | NEW |
| 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 Loading... |
| 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() |
| OLD | NEW |