| Index: mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import2.mojom.dart | 
| diff --git a/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import2.mojom.dart b/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import2.mojom.dart | 
| index c7e7986484f76216704f0435db1ff5c898f45423..0c8a602680250b8bf9d9b33c4f2858d2d78fc51c 100644 | 
| --- a/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import2.mojom.dart | 
| +++ b/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import2.mojom.dart | 
| @@ -4,6 +4,7 @@ | 
|  | 
| library sample_import2_mojom; | 
| import 'dart:collection'; | 
| +import 'dart:typed_data'; | 
| import 'package:mojo/bindings.dart' as bindings; | 
| import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types; | 
|  | 
| @@ -61,24 +62,6 @@ class Color extends bindings.MojoEnum { | 
| int toJson() => mojoEnumValue; | 
| } | 
|  | 
| -mojom_types.MojomEnum _sampleImport2Color() { | 
| -  return new mojom_types.MojomEnum() | 
| -    ..declData = (new mojom_types.DeclarationData() | 
| -      ..shortName = 'Color' | 
| -      ..fullIdentifier = 'imported.Color') | 
| -    ..values = <mojom_types.EnumValue>[ | 
| -      new mojom_types.EnumValue() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Red') | 
| -        ..enumTypeKey = 'sample_import2_Color__' | 
| -        ..intValue = 0, | 
| -      new mojom_types.EnumValue() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Black') | 
| -        ..enumTypeKey = 'sample_import2_Color__' | 
| -        ..intValue = 1,]; | 
| -} | 
| - | 
|  | 
|  | 
| class Size extends bindings.Struct { | 
| @@ -166,24 +149,6 @@ class Size extends bindings.Struct { | 
| } | 
| } | 
|  | 
| -mojom_types.MojomStruct _sampleImport2Size() { | 
| -  return new mojom_types.MojomStruct() | 
| -    ..declData = (new mojom_types.DeclarationData() | 
| -      ..shortName = 'Size' | 
| -      ..fullIdentifier = 'imported.Size') | 
| -    ..fields = <mojom_types.StructField>[ | 
| -      new mojom_types.StructField() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Width') | 
| -        ..type = (new mojom_types.Type() | 
| -          ..simpleType = mojom_types.SimpleType.int32), | 
| -      new mojom_types.StructField() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Height') | 
| -        ..type = (new mojom_types.Type() | 
| -          ..simpleType = mojom_types.SimpleType.int32),]; | 
| -} | 
| - | 
|  | 
| class Thing extends bindings.Struct { | 
| static const List<bindings.StructDataHeader> kVersions = const [ | 
| @@ -308,72 +273,27 @@ class Thing extends bindings.Struct { | 
| } | 
| } | 
|  | 
| -mojom_types.MojomStruct _sampleImport2Thing() { | 
| -  return new mojom_types.MojomStruct() | 
| -    ..declData = (new mojom_types.DeclarationData() | 
| -      ..shortName = 'Thing' | 
| -      ..fullIdentifier = 'imported.Thing') | 
| -    ..fields = <mojom_types.StructField>[ | 
| -      new mojom_types.StructField() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Shape') | 
| -        ..type = (new mojom_types.Type() | 
| -          ..typeReference = (new mojom_types.TypeReference() | 
| -          ..identifier = 'sample_import_Shape__' | 
| -          ..typeKey = 'sample_import_Shape__' | 
| -        )), | 
| -      new mojom_types.StructField() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Color') | 
| -        ..type = (new mojom_types.Type() | 
| -          ..typeReference = (new mojom_types.TypeReference() | 
| -          ..identifier = 'sample_import2_Color__' | 
| -          ..typeKey = 'sample_import2_Color__' | 
| -        )), | 
| -      new mojom_types.StructField() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Location') | 
| -        ..type = (new mojom_types.Type() | 
| -          ..typeReference = (new mojom_types.TypeReference() | 
| -          ..identifier = 'sample_import_Point__' | 
| -          ..typeKey = 'sample_import_Point__' | 
| -        )), | 
| -      new mojom_types.StructField() | 
| -        ..declData = (new mojom_types.DeclarationData() | 
| -          ..shortName = 'Size') | 
| -        ..type = (new mojom_types.Type() | 
| -          ..typeReference = (new mojom_types.TypeReference() | 
| -          ..identifier = 'sample_import2_Size__' | 
| -          ..typeKey = 'sample_import2_Size__' | 
| -        )),]; | 
| -} | 
| - | 
| - | 
|  | 
| -Map<String, mojom_types.UserDefinedType> _initDescriptions() { | 
| -  var map = new HashMap<String, mojom_types.UserDefinedType>(); | 
| -  map["sample_import2_Color__"] = | 
| -    new mojom_types.UserDefinedType() | 
| -      ..enumType = _sampleImport2Color(); | 
| -  map["sample_import2_Size__"] = | 
| -    new mojom_types.UserDefinedType() | 
| -      ..structType = _sampleImport2Size(); | 
| -  map["sample_import2_Thing__"] = | 
| -    new mojom_types.UserDefinedType() | 
| -      ..structType = _sampleImport2Thing(); | 
| -  sample_import_mojom.getAllMojomTypeDefinitions() | 
| -      .forEach((String s, mojom_types.UserDefinedType udt) { | 
| -    map[s] = udt; | 
| -  }); | 
| - | 
| -  return map; | 
| -} | 
| +mojom_types.RuntimeTypeInfo getRuntimeTypeInfo() => _runtimeTypeInfo ?? | 
| +    _initRuntimeTypeInfo(); | 
|  | 
| -var _mojomDesc; | 
| Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() { | 
| -  if (_mojomDesc == null) { | 
| -    _mojomDesc = _initDescriptions(); | 
| -  } | 
| -  return _mojomDesc; | 
| +  return getRuntimeTypeInfo().typeMap; | 
| } | 
|  | 
| +var _runtimeTypeInfo; | 
| +mojom_types.RuntimeTypeInfo  _initRuntimeTypeInfo() { | 
| +  // serializedRuntimeTypeInfo contains the bytes of the Mojo serialization of | 
| +  // a mojom_types.RuntimeTypeInfo struct describing the Mojom types in this | 
| +  // file. | 
| +  var serializedRuntimeTypeInfo = new Uint8List.fromList(const [24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,32,0,0,0,3,0,0,0,24,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,30,0,0,0,22,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,105,122,101,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,84,104,105,110,103,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,67,111,108,111,114,0,56,0,0,0,3,0,0,0,16,0,0,0,1,0,0,0,40,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,72,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,200,10,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,83,105,122,101,0,0,0,0,21,0,0,0,13,0,0,0,105,109,112,111,114,116,101,100,46,83,105,122,101,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,7,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,119,105,100,116,104,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,18,0,0,0,8,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,6,0,0,0,104,101,105,103,104,116,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,19,0,0,0,8,0,0,0,91,0,0,0,83,0,0,0, | 
| +47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,84,104,105,110,103,0,0,0,22,0,0,0,14,0,0,0,105,109,112,111,114,116,101,100,46,84,104,105,110,103,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,22,0,0,0,7,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,40,0,0,0,4,0,0,0,32,0,0,0,0,0,0,0,248,1,0,0,0,0,0,0,192,3,0,0,0,0,0,0,16,5,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,115,104,97,112,101,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,23,0,0,0,17,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,22,0,0,0,14,0,0,0,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,9,0,0,0,82,69,67,84,65,78,71,76,69,0,0,0,0,0,0,0,41,0,0,0,33,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,46,82,69,67,84,65,78,71,76,69,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, | 
| +13,0,0,0,5,0,0,0,99,111,108,111,114,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,8,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,67,111,108,111,114,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,67,111,108,111,114,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,11,0,0,0,67,111,108,111,114,46,66,76,65,67,75,0,0,0,0,0,37,0,0,0,29,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,67,111,108,111,114,46,66,76,65,67,75,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,108,111,99,97,116,105,111,110,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,25,0,0,0,8,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,80,111,105,110,116,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,80,111,105,110,116,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,115,105,122,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,26,0,0,0,7,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,83,105,122,101,0,0,0,0,30,0,0,0,22,0,0,0, | 
| +84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,105,122,101,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,67,111,108,111,114,0,0,0,22,0,0,0,14,0,0,0,105,109,112,111,114,116,101,100,46,67,111,108,111,114,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,12,0,0,0,5,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,72,1,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,82,69,68,0,0,0,0,0,26,0,0,0,18,0,0,0,105,109,112,111,114,116,101,100,46,67,111,108,111,114,46,82,69,68,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,13,0,0,0,2,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,67,111,108,111,114,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,66,76,65,67,75,0,0,0,28,0,0,0,20,0,0,0,105,109,112,111,114,116,101,100,46,67,111,108,111,114,46,66,76,65,67,75,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,14,0,0,0,2,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,50,46,109,111,106,111,109,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,67,111,108,111,114,0]); | 
| + | 
| +  // Deserialize RuntimeTypeInfo | 
| +  var bdata = new ByteData.view(serializedRuntimeTypeInfo.buffer); | 
| +  var message = new bindings.Message(bdata, null, serializedRuntimeTypeInfo.length, 0); | 
| +  _runtimeTypeInfo = mojom_types.RuntimeTypeInfo.deserialize(message); | 
| +  return _runtimeTypeInfo; | 
| +} | 
|  |