| 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 systems to generate | 6 """This module provides shared functionality for the systems to generate |
| 7 frog binding from the IDL database.""" | 7 frog binding from the IDL database.""" |
| 8 | 8 |
| 9 import os | 9 import os |
| 10 from generator import * | 10 from generator import * |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 template_file = 'immutable_list_mixin.darttemplate' | 343 template_file = 'immutable_list_mixin.darttemplate' |
| 344 template = self._system._templates.Load(template_file) | 344 template = self._system._templates.Load(template_file) |
| 345 self._members_emitter.Emit(template, E=DartType(element_type)) | 345 self._members_emitter.Emit(template, E=DartType(element_type)) |
| 346 | 346 |
| 347 | 347 |
| 348 def AddOperation(self, info): | 348 def AddOperation(self, info): |
| 349 """ | 349 """ |
| 350 Arguments: | 350 Arguments: |
| 351 info: An OperationInfo object. | 351 info: An OperationInfo object. |
| 352 """ | 352 """ |
| 353 if info.IsStatic(): |
| 354 return |
| 355 |
| 353 # TODO(vsm): Handle overloads. | 356 # TODO(vsm): Handle overloads. |
| 354 params = info.ParametersImplementationDeclaration( | 357 params = info.ParametersImplementationDeclaration( |
| 355 lambda type_name: self._NarrowInputType(type_name)) | 358 lambda type_name: self._NarrowInputType(type_name)) |
| 356 | 359 |
| 357 native_string = '' | 360 native_string = '' |
| 358 if info.declared_name != info.name: | 361 if info.declared_name != info.name: |
| 359 native_string = " '%s'" % info.declared_name | 362 native_string = " '%s'" % info.declared_name |
| 360 | 363 |
| 361 native_body = dom_frog_native_bodies.get( | 364 native_body = dom_frog_native_bodies.get( |
| 362 self._interface.id + '.' + info.name, '') | 365 self._interface.id + '.' + info.name, '') |
| 363 if native_body: | 366 if native_body: |
| 364 native_string = " '''" + native_body + "'''" | 367 native_string = " '''" + native_body + "'''" |
| 365 | 368 |
| 366 self._members_emitter.Emit( | 369 self._members_emitter.Emit( |
| 367 '\n' | 370 '\n' |
| 368 ' $TYPE $NAME($PARAMS) native$NATIVESTRING;\n', | 371 ' $TYPE $NAME($PARAMS) native$NATIVESTRING;\n', |
| 369 TYPE=self._NarrowOutputType(info.type_name), | 372 TYPE=self._NarrowOutputType(info.type_name), |
| 370 NAME=info.name, | 373 NAME=info.name, |
| 371 PARAMS=params, | 374 PARAMS=params, |
| 372 NATIVESTRING=native_string) | 375 NATIVESTRING=native_string) |
| OLD | NEW |