| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2012, 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 """This module provides shared functionality for the system to generate | 6 """This module provides shared functionality for the system to generate |
| 7 Dart:html APIs from the IDL database.""" | 7 Dart:html APIs from the IDL database.""" |
| 8 | 8 |
| 9 import emitter | 9 import emitter |
| 10 import os | 10 import os |
| 11 from generator import * | 11 from generator import * |
| 12 | 12 |
| 13 _js_custom_members = set([ | 13 _js_custom_members = set([ |
| 14 'AudioBufferSourceNode.start', | 14 'AudioBufferSourceNode.start', |
| 15 'AudioBufferSourceNode.stop', | 15 'AudioBufferSourceNode.stop', |
| 16 'CSSStyleDeclaration.getPropertyValue', | 16 'CSSStyleDeclaration.getPropertyValue', |
| 17 'CSSStyleDeclaration.setProperty', | 17 'CSSStyleDeclaration.setProperty', |
| 18 'Element.insertAdjacentElement', | 18 'Element.insertAdjacentElement', |
| 19 'Element.insertAdjacentHTML', | 19 'Element.insertAdjacentHTML', |
| 20 'Element.insertAdjacentText', | 20 'Element.insertAdjacentText', |
| 21 'Element.remove', | 21 'Element.remove', |
| 22 'ElementEvents.mouseWheel', | 22 'ElementEvents.mouseWheel', |
| 23 'IDBDatabase.transaction', | 23 'IDBDatabase.transaction', |
| 24 'IFrameElement.contentWindow', | 24 'IFrameElement.contentWindow', |
| 25 'MouseEvent.offsetX', | 25 'MouseEvent.offsetX', |
| 26 'MouseEvent.offsetY', | 26 'MouseEvent.offsetY', |
| 27 'SelectElement.selectedOptions', |
| 27 'TableElement.createTBody', | 28 'TableElement.createTBody', |
| 28 'Window.document', | 29 'Window.document', |
| 29 'Window.indexedDB', | 30 'Window.indexedDB', |
| 30 'Window.location', | 31 'Window.location', |
| 31 'Window.open', | 32 'Window.open', |
| 32 'Window.top', | 33 'Window.top', |
| 33 'Window.webkitCancelAnimationFrame', | 34 'Window.webkitCancelAnimationFrame', |
| 34 'Window.webkitRequestAnimationFrame', | 35 'Window.webkitRequestAnimationFrame', |
| 35 ]) | 36 ]) |
| 36 | 37 |
| (...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1115 | 1116 |
| 1116 library_emitter = self._multiemitter.FileEmitter(library_file_path) | 1117 library_emitter = self._multiemitter.FileEmitter(library_file_path) |
| 1117 library_file_dir = os.path.dirname(library_file_path) | 1118 library_file_dir = os.path.dirname(library_file_path) |
| 1118 auxiliary_dir = os.path.relpath(auxiliary_dir, library_file_dir) | 1119 auxiliary_dir = os.path.relpath(auxiliary_dir, library_file_dir) |
| 1119 imports_emitter = library_emitter.Emit( | 1120 imports_emitter = library_emitter.Emit( |
| 1120 self._template, AUXILIARY_DIR=massage_path(auxiliary_dir)) | 1121 self._template, AUXILIARY_DIR=massage_path(auxiliary_dir)) |
| 1121 for path in sorted(self._path_to_emitter.keys()): | 1122 for path in sorted(self._path_to_emitter.keys()): |
| 1122 relpath = os.path.relpath(path, library_file_dir) | 1123 relpath = os.path.relpath(path, library_file_dir) |
| 1123 imports_emitter.Emit( | 1124 imports_emitter.Emit( |
| 1124 "#source('$PATH');\n", PATH=massage_path(relpath)) | 1125 "#source('$PATH');\n", PATH=massage_path(relpath)) |
| OLD | NEW |