55f81f2210
- Add `.style.yapf` with configuration to use Google style. - Run `yapf` on all `.py` files in this repo. - Manually fix one trailing space in a doc string. - Run `git cl format runtime` to satisfy presubmit. Change-Id: I7e6bd11e91f07926b9188362599af398551eed79 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/111600 Commit-Queue: Nate Bosch <nbosch@google.com> Reviewed-by: Alexander Thomas <athom@google.com>
12 lines
199 B
Python
12 lines
199 B
Python
builder = None
|
|
|
|
|
|
def set_builder(created_builder):
|
|
global builder
|
|
builder = created_builder
|
|
|
|
|
|
def get_interfaces_info():
|
|
global builder
|
|
return builder._info_collector.interfaces_info
|