| Index: tools/dom/scripts/htmldartgenerator.py
|
| diff --git a/tools/dom/scripts/htmldartgenerator.py b/tools/dom/scripts/htmldartgenerator.py
|
| index 9c4060a197070444138e0bbac97f308459cd7d82..7b7ca8ea0613d8e6afd8edc495505b7f4c149241 100644
|
| --- a/tools/dom/scripts/htmldartgenerator.py
|
| +++ b/tools/dom/scripts/htmldartgenerator.py
|
| @@ -166,8 +166,11 @@ class HtmlDartGenerator(object):
|
| full_operation_str = self._GetStringRepresentation(interface, operation)
|
| if (full_operation_str in renamed_overloads and
|
| renamed_overloads[full_operation_str] not in already_renamed):
|
| - operation.ext_attrs['DartName'] = renamed_overloads[
|
| - full_operation_str]
|
| + dart_name = renamed_overloads[full_operation_str]
|
| + if not dart_name:
|
| + continue
|
| +
|
| + operation.ext_attrs['DartName'] = dart_name
|
| potential_added_operations.add(operation.id)
|
| self._EnsureNoMultipleTypeSignatures(interface, operation,
|
| operations_by_name)
|
|
|