diff --git a/rbx_binary/src/deserializer/state.rs b/rbx_binary/src/deserializer/state.rs index 43722abe5..88083e4b8 100644 --- a/rbx_binary/src/deserializer/state.rs +++ b/rbx_binary/src/deserializer/state.rs @@ -385,20 +385,7 @@ impl<'db, R: Read> DeserializerState<'db, R> { for referent in &type_info.referents { let instance = self.instances_by_ref.get_mut(referent).unwrap(); let binary_string = chunk.read_binary_string()?; - let value = match std::str::from_utf8(&binary_string) { - Ok(value) => Cow::Borrowed(value), - Err(_) => { - log::warn!( - "Performing lossy string conversion on property {}.{} because it did not contain UTF-8. -This may cause unexpected or broken behavior in your final results if you rely on this property being non UTF-8.", - type_info.type_name, - prop_name - ); - - String::from_utf8_lossy(binary_string.as_ref()) - } - }; - instance.builder.set_name(value); + instance.builder.set_name(binary_string); } return Ok(()); diff --git a/rbx_binary/src/serializer/state.rs b/rbx_binary/src/serializer/state.rs index e83e11db3..54df027e2 100644 --- a/rbx_binary/src/serializer/state.rs +++ b/rbx_binary/src/serializer/state.rs @@ -11,8 +11,8 @@ use rbx_dom_weak::{ Attributes, Axes, BinaryString, BrickColor, CFrame, Color3, Color3uint8, ColorSequence, ColorSequenceKeypoint, Content, Enum, EnumItem, Faces, Font, MaterialColors, Matrix3, NumberRange, NumberSequence, NumberSequenceKeypoint, PhysicalProperties, Ray, Rect, Ref, - SecurityCapabilities, SharedString, Tags, UDim, UDim2, UniqueId, Variant, VariantType, - Vector2, Vector3, Vector3int16, + RobloxString, SecurityCapabilities, SharedString, Tags, UDim, UDim2, UniqueId, Variant, + VariantType, Vector2, Vector3, Vector3int16, }, Instance, Ustr, UstrSet, WeakDom, }; @@ -629,7 +629,14 @@ impl<'dom, 'db, W: Write> SerializerState<'dom, 'db, W> { // convenience, but when serializing to the binary model // format we need to handle it just like other properties. if *prop_name == "Name" { - return Cow::Owned(Variant::String(instance.name.clone())); + let name_as_string = match &instance.name { + RobloxString::Binary(buffer) => { + String::from_utf8_lossy(buffer.as_slice()).to_string() + } + RobloxString::Utf8(string) => string.to_string(), + }; + + return Cow::Owned(Variant::String(name_as_string)); } // Most properties will be stored on instances using the @@ -1313,7 +1320,14 @@ impl<'dom, 'db, W: Write> SerializerState<'dom, 'db, W> { while current_id.is_some() { let instance = self.dom.get_by_ref(current_id).unwrap(); - components.push(instance.name.as_str()); + let name_as_string = match &instance.name { + RobloxString::Binary(buffer) => { + String::from_utf8_lossy(buffer.as_slice()).to_string() + } + RobloxString::Utf8(string) => string.to_string(), + }; + + components.push(name_as_string); current_id = instance.parent(); } diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__attributes__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__attributes__decoded.snap index 40ce5b879..0acf7eb24 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__attributes__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__attributes__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -89,4 +91,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__axes__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__axes__decoded.snap index a6f5e307a..7fca62ce3 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__axes__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__axes__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: "" + name: + Utf8: + - "" class: ArcHandles properties: Adornee: "null" @@ -24,7 +26,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-1 - name: X + name: + Utf8: + - X class: ArcHandles properties: Adornee: "null" @@ -46,7 +50,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-2 - name: "X, Y" + name: + Utf8: + - "X, Y" class: ArcHandles properties: Adornee: "null" @@ -69,7 +75,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-3 - name: "X, Y, Z" + name: + Utf8: + - "X, Y, Z" class: ArcHandles properties: Adornee: "null" @@ -93,7 +101,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-4 - name: "X, Z" + name: + Utf8: + - "X, Z" class: ArcHandles properties: Adornee: "null" @@ -116,7 +126,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-5 - name: Y + name: + Utf8: + - Y class: ArcHandles properties: Adornee: "null" @@ -138,7 +150,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-6 - name: "Y, Z" + name: + Utf8: + - "Y, Z" class: ArcHandles properties: Adornee: "null" @@ -161,7 +175,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-7 - name: Z + name: + Utf8: + - Z class: ArcHandles properties: Adornee: "null" @@ -182,4 +198,3 @@ expression: decoded_viewed Visible: Bool: true children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__baseplate-566__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__baseplate-566__decoded.snap index 449d02d3f..65d5d214b 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__baseplate-566__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__baseplate-566__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Workspace + name: + Utf8: + - Workspace class: Workspace properties: AllowThirdPartySales: @@ -116,7 +117,9 @@ expression: decoded_viewed - 1 children: - referent: referent-1 - name: Camera + name: + Utf8: + - Camera class: Camera properties: Attributes: @@ -174,7 +177,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831f8 children: [] - referent: referent-2 - name: Baseplate + name: + Utf8: + - Baseplate class: Part properties: Anchored: @@ -323,7 +328,9 @@ expression: decoded_viewed - 0 children: - referent: referent-3 - name: Texture + name: + Utf8: + - Texture class: Texture properties: Attributes: @@ -359,7 +366,9 @@ expression: decoded_viewed Int32: 1 children: [] - referent: referent-4 - name: Terrain + name: + Utf8: + - Terrain class: Terrain properties: AcquisitionMethod: @@ -615,7 +624,9 @@ expression: decoded_viewed Float32: 10 children: [] - referent: referent-5 - name: SpawnLocation + name: + Utf8: + - SpawnLocation class: SpawnLocation properties: AllowTeamChangeOnTouch: @@ -774,7 +785,9 @@ expression: decoded_viewed - 0 children: - referent: referent-6 - name: Decal + name: + Utf8: + - Decal class: Decal properties: Attributes: @@ -802,7 +815,9 @@ expression: decoded_viewed Int32: 1 children: [] - referent: referent-7 - name: SoundService + name: + Utf8: + - SoundService class: SoundService properties: AmbientReverb: @@ -829,7 +844,9 @@ expression: decoded_viewed Enum: 1 children: [] - referent: referent-8 - name: NonReplicatedCSGDictionaryService + name: + Utf8: + - NonReplicatedCSGDictionaryService class: NonReplicatedCSGDictionaryService properties: Attributes: @@ -844,7 +861,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048305b children: [] - referent: referent-9 - name: CSGDictionaryService + name: + Utf8: + - CSGDictionaryService class: CSGDictionaryService properties: Attributes: @@ -859,7 +878,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048305c children: [] - referent: referent-10 - name: Chat + name: + Utf8: + - Chat class: Chat properties: Attributes: @@ -878,7 +899,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483061 children: [] - referent: referent-11 - name: Instance + name: + Utf8: + - Instance class: TimerService properties: Attributes: @@ -893,7 +916,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483062 children: [] - referent: referent-12 - name: Players + name: + Utf8: + - Players class: Players properties: Attributes: @@ -918,7 +943,9 @@ expression: decoded_viewed Bool: false children: [] - referent: referent-13 - name: ReplicatedFirst + name: + Utf8: + - ReplicatedFirst class: ReplicatedFirst properties: Attributes: @@ -933,7 +960,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483068 children: [] - referent: referent-14 - name: TweenService + name: + Utf8: + - TweenService class: TweenService properties: Attributes: @@ -948,7 +977,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048306a children: [] - referent: referent-15 - name: MaterialService + name: + Utf8: + - MaterialService class: MaterialService properties: AsphaltName: @@ -1029,7 +1060,9 @@ expression: decoded_viewed String: WoodPlanks children: [] - referent: referent-16 - name: PermissionsService + name: + Utf8: + - PermissionsService class: PermissionsService properties: Attributes: @@ -1044,7 +1077,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048306f children: [] - referent: referent-17 - name: PlayerEmulatorService + name: + Utf8: + - PlayerEmulatorService class: PlayerEmulatorService properties: Attributes: @@ -1069,7 +1104,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483071 children: [] - referent: referent-18 - name: StudioData + name: + Utf8: + - StudioData class: StudioData properties: Attributes: @@ -1086,7 +1123,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483074 children: [] - referent: referent-19 - name: StarterPlayer + name: + Utf8: + - StarterPlayer class: StarterPlayer properties: AllowCustomAnimations: @@ -1191,7 +1230,9 @@ expression: decoded_viewed Bool: true children: - referent: referent-20 - name: StarterPlayerScripts + name: + Utf8: + - StarterPlayerScripts class: StarterPlayerScripts properties: Attributes: @@ -1206,7 +1247,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483201 children: [] - referent: referent-21 - name: StarterCharacterScripts + name: + Utf8: + - StarterCharacterScripts class: StarterCharacterScripts properties: Attributes: @@ -1221,7 +1264,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483200 children: [] - referent: referent-22 - name: StarterPack + name: + Utf8: + - StarterPack class: StarterPack properties: Attributes: @@ -1236,7 +1281,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483076 children: [] - referent: referent-23 - name: StarterGui + name: + Utf8: + - StarterGui class: StarterGui properties: Attributes: @@ -1261,7 +1308,9 @@ expression: decoded_viewed Enum: 0 children: [] - referent: referent-24 - name: LocalizationService + name: + Utf8: + - LocalizationService class: LocalizationService properties: Attributes: @@ -1276,7 +1325,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483079 children: [] - referent: referent-25 - name: Teleport Service + name: + Utf8: + - Teleport Service class: TeleportService properties: Attributes: @@ -1291,7 +1342,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048307d children: [] - referent: referent-26 - name: CollectionService + name: + Utf8: + - CollectionService class: CollectionService properties: Attributes: @@ -1306,7 +1359,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048307f children: [] - referent: referent-27 - name: PhysicsService + name: + Utf8: + - PhysicsService class: PhysicsService properties: Attributes: @@ -1321,7 +1376,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483080 children: [] - referent: referent-28 - name: Geometry + name: + Utf8: + - Geometry class: Geometry properties: Attributes: @@ -1336,7 +1393,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483082 children: [] - referent: referent-29 - name: InsertService + name: + Utf8: + - InsertService class: InsertService properties: AllowClientInsertModels: @@ -1355,7 +1414,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483084 children: - referent: referent-30 - name: InsertionHash + name: + Utf8: + - InsertionHash class: StringValue properties: Attributes: @@ -1372,7 +1433,9 @@ expression: decoded_viewed String: "{27DB7157-ECC3-47DA-9A78-AF69D482E6A5}" children: [] - referent: referent-31 - name: GamePassService + name: + Utf8: + - GamePassService class: GamePassService properties: Attributes: @@ -1387,7 +1450,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483085 children: [] - referent: referent-32 - name: Debris + name: + Utf8: + - Debris class: Debris properties: Attributes: @@ -1404,7 +1469,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483086 children: [] - referent: referent-33 - name: CookiesService + name: + Utf8: + - CookiesService class: CookiesService properties: Attributes: @@ -1419,7 +1486,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483087 children: [] - referent: referent-34 - name: VRService + name: + Utf8: + - VRService class: VRService properties: Attributes: @@ -1434,7 +1503,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483091 children: [] - referent: referent-35 - name: ContextActionService + name: + Utf8: + - ContextActionService class: ContextActionService properties: Attributes: @@ -1449,7 +1520,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483093 children: [] - referent: referent-36 - name: Instance + name: + Utf8: + - Instance class: ScriptService properties: Attributes: @@ -1464,7 +1537,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483095 children: [] - referent: referent-37 - name: AssetService + name: + Utf8: + - AssetService class: AssetService properties: Attributes: @@ -1479,7 +1554,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483096 children: [] - referent: referent-38 - name: TouchInputService + name: + Utf8: + - TouchInputService class: TouchInputService properties: Attributes: @@ -1494,7 +1571,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483097 children: [] - referent: referent-39 - name: AnalyticsService + name: + Utf8: + - AnalyticsService class: AnalyticsService properties: ApiKey: @@ -1511,7 +1590,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048309a children: [] - referent: referent-40 - name: FilteredSelection + name: + Utf8: + - FilteredSelection class: Instance properties: Attributes: @@ -1526,7 +1607,9 @@ expression: decoded_viewed UniqueId: 3152d93110d773a904200e490000773a children: [] - referent: referent-41 - name: Selection + name: + Utf8: + - Selection class: Selection properties: Attributes: @@ -1541,7 +1624,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048309d children: [] - referent: referent-42 - name: ServerScriptService + name: + Utf8: + - ServerScriptService class: ServerScriptService properties: Attributes: @@ -1558,7 +1643,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048309e children: [] - referent: referent-43 - name: ServerStorage + name: + Utf8: + - ServerStorage class: ServerStorage properties: Attributes: @@ -1573,7 +1660,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d0048309f children: [] - referent: referent-44 - name: ReplicatedStorage + name: + Utf8: + - ReplicatedStorage class: ReplicatedStorage properties: Attributes: @@ -1588,7 +1677,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004830a0 children: [] - referent: referent-45 - name: Instance + name: + Utf8: + - Instance class: LuaWebService properties: Attributes: @@ -1603,7 +1694,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004830a7 children: [] - referent: referent-46 - name: ProcessInstancePhysicsService + name: + Utf8: + - ProcessInstancePhysicsService class: ProcessInstancePhysicsService properties: Attributes: @@ -1618,7 +1711,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004830a8 children: [] - referent: referent-47 - name: LanguageService + name: + Utf8: + - LanguageService class: LanguageService properties: Attributes: @@ -1633,7 +1728,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831f0 children: [] - referent: referent-48 - name: Lighting + name: + Utf8: + - Lighting class: Lighting properties: Ambient: @@ -1699,7 +1796,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004830cd children: - referent: referent-49 - name: Sky + name: + Utf8: + - Sky class: Sky properties: Attributes: @@ -1738,7 +1837,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831fe children: [] - referent: referent-50 - name: SunRays + name: + Utf8: + - SunRays class: SunRaysEffect properties: Attributes: @@ -1759,7 +1860,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483203 children: [] - referent: referent-51 - name: Atmosphere + name: + Utf8: + - Atmosphere class: Atmosphere properties: Attributes: @@ -1792,7 +1895,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831f6 children: [] - referent: referent-52 - name: Bloom + name: + Utf8: + - Bloom class: BloomEffect properties: Attributes: @@ -1815,7 +1920,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831f7 children: [] - referent: referent-53 - name: DepthOfField + name: + Utf8: + - DepthOfField class: DepthOfFieldEffect properties: Attributes: @@ -1840,7 +1947,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831fb children: [] - referent: referent-54 - name: Instance + name: + Utf8: + - Instance class: LodDataService properties: Attributes: @@ -1855,7 +1964,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004830d0 children: [] - referent: referent-55 - name: DataStoreService + name: + Utf8: + - DataStoreService class: DataStoreService properties: Attributes: @@ -1874,7 +1985,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831f9 children: [] - referent: referent-56 - name: HttpService + name: + Utf8: + - HttpService class: HttpService properties: Attributes: @@ -1891,7 +2004,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d004831fc children: [] - referent: referent-57 - name: Teams + name: + Utf8: + - Teams class: Teams properties: Attributes: @@ -1906,7 +2021,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483204 children: [] - referent: referent-58 - name: TestService + name: + Utf8: + - TestService class: TestService properties: Attributes: @@ -1939,7 +2056,9 @@ expression: decoded_viewed UniqueId: 44b188dace632b4702e9c68d00483206 children: [] - referent: referent-59 - name: VirtualInputManager + name: + Utf8: + - VirtualInputManager class: VirtualInputManager properties: Attributes: @@ -1953,4 +2072,3 @@ expression: decoded_viewed UniqueId: UniqueId: 44b188dace632b4702e9c68d00483208 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__bloomeffect__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__bloomeffect__decoded.snap index d5c58cecd..555144445 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__bloomeffect__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__bloomeffect__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Bloom + name: + Utf8: + - Bloom class: BloomEffect properties: Attributes: @@ -20,4 +21,3 @@ expression: decoded_viewed Threshold: Float32: 2.285 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-case-mixture__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-case-mixture__decoded.snap index cf1d3387f..7224f25d9 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-case-mixture__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-case-mixture__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: "0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0" + name: + Utf8: + - "0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0" class: CFrameValue properties: Attributes: @@ -30,7 +32,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" + name: + Utf8: + - "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" class: CFrameValue properties: Attributes: @@ -56,4 +60,3 @@ expression: decoded_viewed - NaN - NaN children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-special-cases__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-special-cases__decoded.snap index e2ff4e374..483e604bb 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-special-cases__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__cframe-special-cases__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: "02" + name: + Utf8: + - "02" class: CFrameValue properties: Attributes: @@ -30,7 +32,9 @@ expression: decoded_viewed - 1 children: [] - referent: referent-1 - name: "03" + name: + Utf8: + - "03" class: CFrameValue properties: Attributes: @@ -57,7 +61,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-2 - name: "05" + name: + Utf8: + - "05" class: CFrameValue properties: Attributes: @@ -84,7 +90,9 @@ expression: decoded_viewed - -1 children: [] - referent: referent-3 - name: "06" + name: + Utf8: + - "06" class: CFrameValue properties: Attributes: @@ -111,7 +119,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-4 - name: "07" + name: + Utf8: + - "07" class: CFrameValue properties: Attributes: @@ -138,7 +148,9 @@ expression: decoded_viewed - -1 children: [] - referent: referent-5 - name: "09" + name: + Utf8: + - "09" class: CFrameValue properties: Attributes: @@ -165,7 +177,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-6 - name: 0a + name: + Utf8: + - 0a class: CFrameValue properties: Attributes: @@ -192,7 +206,9 @@ expression: decoded_viewed - 1 children: [] - referent: referent-7 - name: 0c + name: + Utf8: + - 0c class: CFrameValue properties: Attributes: @@ -219,7 +235,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-8 - name: 0d + name: + Utf8: + - 0d class: CFrameValue properties: Attributes: @@ -246,7 +264,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-9 - name: 0e + name: + Utf8: + - 0e class: CFrameValue properties: Attributes: @@ -273,7 +293,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-10 - name: "10" + name: + Utf8: + - "10" class: CFrameValue properties: Attributes: @@ -300,7 +322,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-11 - name: "11" + name: + Utf8: + - "11" class: CFrameValue properties: Attributes: @@ -327,7 +351,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-12 - name: "14" + name: + Utf8: + - "14" class: CFrameValue properties: Attributes: @@ -354,7 +380,9 @@ expression: decoded_viewed - -1 children: [] - referent: referent-13 - name: "15" + name: + Utf8: + - "15" class: CFrameValue properties: Attributes: @@ -381,7 +409,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-14 - name: "17" + name: + Utf8: + - "17" class: CFrameValue properties: Attributes: @@ -408,7 +438,9 @@ expression: decoded_viewed - 1 children: [] - referent: referent-15 - name: "18" + name: + Utf8: + - "18" class: CFrameValue properties: Attributes: @@ -435,7 +467,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-16 - name: "19" + name: + Utf8: + - "19" class: CFrameValue properties: Attributes: @@ -462,7 +496,9 @@ expression: decoded_viewed - 1 children: [] - referent: referent-17 - name: 1b + name: + Utf8: + - 1b class: CFrameValue properties: Attributes: @@ -489,7 +525,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-18 - name: 1c + name: + Utf8: + - 1c class: CFrameValue properties: Attributes: @@ -516,7 +554,9 @@ expression: decoded_viewed - -1 children: [] - referent: referent-19 - name: 1e + name: + Utf8: + - 1e class: CFrameValue properties: Attributes: @@ -543,7 +583,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-20 - name: 1f + name: + Utf8: + - 1f class: CFrameValue properties: Attributes: @@ -570,7 +612,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-21 - name: "20" + name: + Utf8: + - "20" class: CFrameValue properties: Attributes: @@ -597,7 +641,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-22 - name: "22" + name: + Utf8: + - "22" class: CFrameValue properties: Attributes: @@ -624,7 +670,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-23 - name: "23" + name: + Utf8: + - "23" class: CFrameValue properties: Attributes: @@ -650,4 +698,3 @@ expression: decoded_viewed - 0 - 0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-folder__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-folder__decoded.snap index e0111994c..8a74ff496 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-folder__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-folder__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -12,4 +13,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-modulescript__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-modulescript__decoded.snap index dcf80970d..cfcd2134e 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-modulescript__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__default-inserted-modulescript__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: ModuleScript + name: + Utf8: + - ModuleScript class: ModuleScript properties: Attributes: @@ -17,4 +19,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__faces__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__faces__decoded.snap index c2a31ee39..e886c84e4 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__faces__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__faces__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: "" + name: + Utf8: + - "" class: Handles properties: Adornee: "null" @@ -26,7 +28,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-1 - name: Right + name: + Utf8: + - Right class: Handles properties: Adornee: "null" @@ -50,7 +54,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-2 - name: "Right, Top" + name: + Utf8: + - "Right, Top" class: Handles properties: Adornee: "null" @@ -75,7 +81,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-3 - name: "Right, Top, Back" + name: + Utf8: + - "Right, Top, Back" class: Handles properties: Adornee: "null" @@ -101,7 +109,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-4 - name: "Right, Top, Back, Left" + name: + Utf8: + - "Right, Top, Back, Left" class: Handles properties: Adornee: "null" @@ -128,7 +138,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-5 - name: "Right, Top, Back, Left, Bottom" + name: + Utf8: + - "Right, Top, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -156,7 +168,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-6 - name: "Right, Top, Back, Left, Bottom, Front" + name: + Utf8: + - "Right, Top, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -185,7 +199,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-7 - name: "Right, Top, Back, Left, Front" + name: + Utf8: + - "Right, Top, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -213,7 +229,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-8 - name: "Right, Top, Back, Bottom" + name: + Utf8: + - "Right, Top, Back, Bottom" class: Handles properties: Adornee: "null" @@ -240,7 +258,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-9 - name: "Right, Top, Back, Bottom, Front" + name: + Utf8: + - "Right, Top, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -268,7 +288,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-10 - name: "Right, Top, Back, Front" + name: + Utf8: + - "Right, Top, Back, Front" class: Handles properties: Adornee: "null" @@ -295,7 +317,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-11 - name: "Right, Top, Left" + name: + Utf8: + - "Right, Top, Left" class: Handles properties: Adornee: "null" @@ -321,7 +345,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-12 - name: "Right, Top, Left, Bottom" + name: + Utf8: + - "Right, Top, Left, Bottom" class: Handles properties: Adornee: "null" @@ -348,7 +374,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-13 - name: "Right, Top, Left, Bottom, Front" + name: + Utf8: + - "Right, Top, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -376,7 +404,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-14 - name: "Right, Top, Left, Front" + name: + Utf8: + - "Right, Top, Left, Front" class: Handles properties: Adornee: "null" @@ -403,7 +433,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-15 - name: "Right, Top, Bottom" + name: + Utf8: + - "Right, Top, Bottom" class: Handles properties: Adornee: "null" @@ -429,7 +461,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-16 - name: "Right, Top, Bottom, Front" + name: + Utf8: + - "Right, Top, Bottom, Front" class: Handles properties: Adornee: "null" @@ -456,7 +490,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-17 - name: "Right, Top, Front" + name: + Utf8: + - "Right, Top, Front" class: Handles properties: Adornee: "null" @@ -482,7 +518,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-18 - name: "Right, Back" + name: + Utf8: + - "Right, Back" class: Handles properties: Adornee: "null" @@ -507,7 +545,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-19 - name: "Right, Back, Left" + name: + Utf8: + - "Right, Back, Left" class: Handles properties: Adornee: "null" @@ -533,7 +573,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-20 - name: "Right, Back, Left, Bottom" + name: + Utf8: + - "Right, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -560,7 +602,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-21 - name: "Right, Back, Left, Bottom, Front" + name: + Utf8: + - "Right, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -588,7 +632,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-22 - name: "Right, Back, Left, Front" + name: + Utf8: + - "Right, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -615,7 +661,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-23 - name: "Right, Back, Bottom" + name: + Utf8: + - "Right, Back, Bottom" class: Handles properties: Adornee: "null" @@ -641,7 +689,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-24 - name: "Right, Back, Bottom, Front" + name: + Utf8: + - "Right, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -668,7 +718,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-25 - name: "Right, Back, Front" + name: + Utf8: + - "Right, Back, Front" class: Handles properties: Adornee: "null" @@ -694,7 +746,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-26 - name: "Right, Left" + name: + Utf8: + - "Right, Left" class: Handles properties: Adornee: "null" @@ -719,7 +773,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-27 - name: "Right, Left, Bottom" + name: + Utf8: + - "Right, Left, Bottom" class: Handles properties: Adornee: "null" @@ -745,7 +801,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-28 - name: "Right, Left, Bottom, Front" + name: + Utf8: + - "Right, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -772,7 +830,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-29 - name: "Right, Left, Front" + name: + Utf8: + - "Right, Left, Front" class: Handles properties: Adornee: "null" @@ -798,7 +858,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-30 - name: "Right, Bottom" + name: + Utf8: + - "Right, Bottom" class: Handles properties: Adornee: "null" @@ -823,7 +885,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-31 - name: "Right, Bottom, Front" + name: + Utf8: + - "Right, Bottom, Front" class: Handles properties: Adornee: "null" @@ -849,7 +913,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-32 - name: "Right, Front" + name: + Utf8: + - "Right, Front" class: Handles properties: Adornee: "null" @@ -874,7 +940,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-33 - name: Top + name: + Utf8: + - Top class: Handles properties: Adornee: "null" @@ -898,7 +966,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-34 - name: "Top, Back" + name: + Utf8: + - "Top, Back" class: Handles properties: Adornee: "null" @@ -923,7 +993,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-35 - name: "Top, Back, Left" + name: + Utf8: + - "Top, Back, Left" class: Handles properties: Adornee: "null" @@ -949,7 +1021,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-36 - name: "Top, Back, Left, Bottom" + name: + Utf8: + - "Top, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -976,7 +1050,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-37 - name: "Top, Back, Left, Bottom, Front" + name: + Utf8: + - "Top, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1004,7 +1080,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-38 - name: "Top, Back, Left, Front" + name: + Utf8: + - "Top, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -1031,7 +1109,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-39 - name: "Top, Back, Bottom" + name: + Utf8: + - "Top, Back, Bottom" class: Handles properties: Adornee: "null" @@ -1057,7 +1137,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-40 - name: "Top, Back, Bottom, Front" + name: + Utf8: + - "Top, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1084,7 +1166,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-41 - name: "Top, Back, Front" + name: + Utf8: + - "Top, Back, Front" class: Handles properties: Adornee: "null" @@ -1110,7 +1194,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-42 - name: "Top, Left" + name: + Utf8: + - "Top, Left" class: Handles properties: Adornee: "null" @@ -1135,7 +1221,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-43 - name: "Top, Left, Bottom" + name: + Utf8: + - "Top, Left, Bottom" class: Handles properties: Adornee: "null" @@ -1161,7 +1249,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-44 - name: "Top, Left, Bottom, Front" + name: + Utf8: + - "Top, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1188,7 +1278,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-45 - name: "Top, Left, Front" + name: + Utf8: + - "Top, Left, Front" class: Handles properties: Adornee: "null" @@ -1214,7 +1306,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-46 - name: "Top, Bottom" + name: + Utf8: + - "Top, Bottom" class: Handles properties: Adornee: "null" @@ -1239,7 +1333,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-47 - name: "Top, Bottom, Front" + name: + Utf8: + - "Top, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1265,7 +1361,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-48 - name: "Top, Front" + name: + Utf8: + - "Top, Front" class: Handles properties: Adornee: "null" @@ -1290,7 +1388,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-49 - name: Back + name: + Utf8: + - Back class: Handles properties: Adornee: "null" @@ -1314,7 +1414,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-50 - name: "Back, Left" + name: + Utf8: + - "Back, Left" class: Handles properties: Adornee: "null" @@ -1339,7 +1441,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-51 - name: "Back, Left, Bottom" + name: + Utf8: + - "Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -1365,7 +1469,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-52 - name: "Back, Left, Bottom, Front" + name: + Utf8: + - "Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1392,7 +1498,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-53 - name: "Back, Left, Front" + name: + Utf8: + - "Back, Left, Front" class: Handles properties: Adornee: "null" @@ -1418,7 +1526,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-54 - name: "Back, Bottom" + name: + Utf8: + - "Back, Bottom" class: Handles properties: Adornee: "null" @@ -1443,7 +1553,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-55 - name: "Back, Bottom, Front" + name: + Utf8: + - "Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1469,7 +1581,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-56 - name: "Back, Front" + name: + Utf8: + - "Back, Front" class: Handles properties: Adornee: "null" @@ -1494,7 +1608,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-57 - name: Left + name: + Utf8: + - Left class: Handles properties: Adornee: "null" @@ -1518,7 +1634,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-58 - name: "Left, Bottom" + name: + Utf8: + - "Left, Bottom" class: Handles properties: Adornee: "null" @@ -1543,7 +1661,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-59 - name: "Left, Bottom, Front" + name: + Utf8: + - "Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1569,7 +1689,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-60 - name: "Left, Front" + name: + Utf8: + - "Left, Front" class: Handles properties: Adornee: "null" @@ -1594,7 +1716,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-61 - name: Bottom + name: + Utf8: + - Bottom class: Handles properties: Adornee: "null" @@ -1618,7 +1742,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-62 - name: "Bottom, Front" + name: + Utf8: + - "Bottom, Front" class: Handles properties: Adornee: "null" @@ -1643,7 +1769,9 @@ expression: decoded_viewed Bool: true children: [] - referent: referent-63 - name: Front + name: + Utf8: + - Front class: Handles properties: Adornee: "null" @@ -1666,4 +1794,3 @@ expression: decoded_viewed Visible: Bool: true children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-cframe-attributes__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-cframe-attributes__decoded.snap index 3a9e8a51a..853a872d6 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-cframe-attributes__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-cframe-attributes__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -413,4 +415,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-enum-attribute__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-enum-attribute__decoded.snap index a6ce75538..24655a4d5 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-enum-attribute__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-enum-attribute__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-font-attribute__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-font-attribute__decoded.snap index 5874ddb1a..f268c007a 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-font-attribute__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__folder-with-font-attribute__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -19,4 +21,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-numbervalue__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-numbervalue__decoded.snap index 2178fb162..7becf1810 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-numbervalue__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-numbervalue__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: NumberValue properties: Attributes: @@ -14,4 +15,3 @@ expression: decoded_viewed Value: Float64: 1.23456 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-uipadding__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-uipadding__decoded.snap index ef8521f8b..88276954b 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-uipadding__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__funny-uipadding__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: UIPadding + name: + Utf8: + - UIPadding class: UIPadding properties: Attributes: @@ -28,4 +29,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__gui-inset-and-font-migration__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__gui-inset-and-font-migration__decoded.snap index f87bfdd5b..cf0f53b26 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__gui-inset-and-font-migration__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__gui-inset-and-font-migration__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -14,7 +16,9 @@ expression: decoded_viewed Tags: [] children: - referent: referent-1 - name: "IgnoreGuiInset: true" + name: + Utf8: + - "IgnoreGuiInset: true" class: ScreenGui properties: Attributes: @@ -52,7 +56,9 @@ expression: decoded_viewed Enum: 1 children: [] - referent: referent-2 - name: "IgnoreGuiInset: false" + name: + Utf8: + - "IgnoreGuiInset: false" class: ScreenGui properties: Attributes: @@ -90,7 +96,9 @@ expression: decoded_viewed Enum: 1 children: - referent: referent-3 - name: TextLabel + name: + Utf8: + - TextLabel class: TextLabel properties: Active: @@ -213,7 +221,9 @@ expression: decoded_viewed Int32: 1 children: [] - referent: referent-4 - name: TextButton + name: + Utf8: + - TextButton class: TextButton properties: Active: @@ -344,7 +354,9 @@ expression: decoded_viewed Int32: 1 children: [] - referent: referent-5 - name: TextBox + name: + Utf8: + - TextBox class: TextBox properties: Active: @@ -481,4 +493,3 @@ expression: decoded_viewed ZIndex: Int32: 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__lighting-with-int32-attribute__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__lighting-with-int32-attribute__decoded.snap index 85413e619..d0955ea63 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__lighting-with-int32-attribute__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__lighting-with-int32-attribute__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Lighting + name: + Utf8: + - Lighting class: Lighting properties: Ambient: @@ -68,4 +70,3 @@ expression: decoded_viewed TimeOfDay: String: "14:30:00" children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__number-values-with-security-capabilities__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__number-values-with-security-capabilities__decoded.snap index f2a70c298..25c095839 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__number-values-with-security-capabilities__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__number-values-with-security-capabilities__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Hmmm + name: + Utf8: + - Hmmm class: NumberValue properties: Attributes: @@ -20,7 +22,9 @@ expression: decoded_viewed Float64: 2.71828182846 children: [] - referent: referent-1 - name: WhereIs + name: + Utf8: + - WhereIs class: NumberValue properties: Attributes: @@ -36,4 +40,3 @@ expression: decoded_viewed Value: Float64: 2.71828182846 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__optionalcoordinateframe-models__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__optionalcoordinateframe-models__decoded.snap index 1e43aff20..f8e923543 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__optionalcoordinateframe-models__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__optionalcoordinateframe-models__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: None + name: + Utf8: + - None class: Model properties: Attributes: @@ -61,7 +63,9 @@ expression: decoded_viewed OptionalCFrame: ~ children: [] - referent: referent-1 - name: Some + name: + Utf8: + - Some class: Model properties: Attributes: @@ -133,7 +137,9 @@ expression: decoded_viewed - -0.34241003 children: [] - referent: referent-2 - name: SomeInfNaN + name: + Utf8: + - SomeInfNaN class: Model properties: Attributes: @@ -204,4 +210,3 @@ expression: decoded_viewed - 0 - 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__package-link__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__package-link__decoded.snap index 45b236872..025604fdf 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__package-link__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__package-link__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Model + name: + Utf8: + - Model class: Model properties: Attributes: @@ -45,7 +47,9 @@ expression: decoded_viewed OptionalCFrame: ~ children: - referent: referent-1 - name: PackageLink + name: + Utf8: + - PackageLink class: PackageLink properties: Attributes: @@ -61,4 +65,3 @@ expression: decoded_viewed VersionIdSerialize: Int64: 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-adjacent__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-adjacent__decoded.snap index 18a54c15e..3c061fd66 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-adjacent__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-adjacent__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -13,7 +14,9 @@ expression: decoded_viewed Tags: [] children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -22,4 +25,3 @@ expression: decoded_viewed Tags: [] Value: referent-0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-child__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-child__decoded.snap index 853ad563c..37b49983f 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-child__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-child__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -14,7 +15,9 @@ expression: decoded_viewed Value: referent-1 children: - referent: referent-1 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -22,4 +25,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-parent__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-parent__decoded.snap index 53df4488f..84e3eb0aa 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-parent__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__ref-parent__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -13,7 +14,9 @@ expression: decoded_viewed Tags: [] children: - referent: referent-1 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -22,4 +25,3 @@ expression: decoded_viewed Tags: [] Value: referent-0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__sharedstring__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__sharedstring__decoded.snap index 991599f96..4d5f2d9d1 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__sharedstring__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__sharedstring__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Parts + name: + Utf8: + - Parts class: Model properties: Attributes: @@ -63,7 +65,9 @@ expression: decoded_viewed - 0.10633871 children: - referent: referent-1 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -234,7 +238,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-2 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -405,7 +411,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-3 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -576,7 +584,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-4 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -747,7 +757,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-5 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -918,7 +930,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-6 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1089,7 +1103,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-7 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1260,7 +1276,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-8 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1430,4 +1448,3 @@ expression: decoded_viewed - 0 - 0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__tags__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__tags__decoded.snap index da010cf1e..290d84e5a 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__tags__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__tags__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -17,4 +18,3 @@ expression: decoded_viewed - My - Tags children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__text-label-with-font__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__text-label-with-font__decoded.snap index 98e646be1..e10f9b18a 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__text-label-with-font__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__text-label-with-font__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: TextLabel + name: + Utf8: + - TextLabel class: TextLabel properties: Active: @@ -126,4 +127,3 @@ expression: decoded_viewed ZIndex: Int32: 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-beams__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-beams__decoded.snap index e501651a1..a48901890 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-beams__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-beams__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -71,7 +73,9 @@ expression: decoded_viewed Float32: 0 children: [] - referent: referent-1 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -134,7 +138,9 @@ expression: decoded_viewed Float32: 0 children: [] - referent: referent-2 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -201,4 +207,3 @@ expression: decoded_viewed ZOffset: Float32: 0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-brickcolorvalues__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-brickcolorvalues__decoded.snap index ae44489e2..f6b585bc8 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-brickcolorvalues__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-brickcolorvalues__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -15,7 +16,9 @@ expression: decoded_viewed BrickColor: 1004 children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -26,7 +29,9 @@ expression: decoded_viewed BrickColor: 37 children: [] - referent: referent-2 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -36,4 +41,3 @@ expression: decoded_viewed Value: BrickColor: 1010 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-color3values__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-color3values__decoded.snap index cdcdf9b46..ab943f9aa 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-color3values__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-color3values__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -17,7 +19,9 @@ expression: decoded_viewed - 0.49803922 children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -31,7 +35,9 @@ expression: decoded_viewed - 0.078431375 children: [] - referent: referent-2 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -44,4 +50,3 @@ expression: decoded_viewed - 1.0196079 - 0.039215688 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-intvalues__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-intvalues__decoded.snap index 1ffd6c0ce..4cf2f84bf 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-intvalues__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-intvalues__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Value=1234567 + name: + Utf8: + - Value=1234567 class: IntValue properties: Attributes: @@ -15,7 +16,9 @@ expression: decoded_viewed Int64: 1234567 children: [] - referent: referent-1 - name: Value=1337 + name: + Utf8: + - Value=1337 class: IntValue properties: Attributes: @@ -26,7 +29,9 @@ expression: decoded_viewed Int64: 1337 children: [] - referent: referent-2 - name: Value=-7654321 + name: + Utf8: + - Value=-7654321 class: IntValue properties: Attributes: @@ -36,4 +41,3 @@ expression: decoded_viewed Value: Int64: -7654321 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-nested-folders__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-nested-folders__decoded.snap index d8ee164e5..860d12839 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-nested-folders__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-nested-folders__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Grandparent + name: + Utf8: + - Grandparent class: Folder properties: Attributes: @@ -13,7 +14,9 @@ expression: decoded_viewed Tags: [] children: - referent: referent-1 - name: Parent + name: + Utf8: + - Parent class: Folder properties: Attributes: @@ -22,7 +25,9 @@ expression: decoded_viewed Tags: [] children: - referent: referent-2 - name: Child + name: + Utf8: + - Child class: Folder properties: Attributes: @@ -30,4 +35,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-screengui__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-screengui__decoded.snap index e69fcedeb..75229113f 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-screengui__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-screengui__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: DisplayOrder0 + name: + Utf8: + - DisplayOrder0 class: ScreenGui properties: Attributes: @@ -25,7 +27,9 @@ expression: decoded_viewed Enum: 1 children: [] - referent: referent-1 - name: DisplayOrder1 + name: + Utf8: + - DisplayOrder1 class: ScreenGui properties: Attributes: @@ -47,7 +51,9 @@ expression: decoded_viewed Enum: 1 children: [] - referent: referent-2 - name: DisplayOrder2 + name: + Utf8: + - DisplayOrder2 class: ScreenGui properties: Attributes: @@ -68,4 +74,3 @@ expression: decoded_viewed ZIndexBehavior: Enum: 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigradients__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigradients__decoded.snap index 466c9eaf3..c07f07564 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigradients__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigradients__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -53,7 +55,9 @@ expression: decoded_viewed envelope: 0 children: [] - referent: referent-1 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -97,7 +101,9 @@ expression: decoded_viewed envelope: 0 children: [] - referent: referent-2 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -137,4 +143,3 @@ expression: decoded_viewed value: 0 envelope: 0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigridlayouts__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigridlayouts__decoded.snap index 7b8c48e86..a058e27b3 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigridlayouts__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-uigridlayouts__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -36,7 +38,9 @@ expression: decoded_viewed Enum: 1 children: [] - referent: referent-1 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -69,7 +73,9 @@ expression: decoded_viewed Enum: 1 children: [] - referent: referent-2 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -101,4 +107,3 @@ expression: decoded_viewed VerticalAlignment: Enum: 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-frames__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-frames__decoded.snap index 5b91f7464..c9915f501 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-frames__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-frames__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Frame1 + name: + Utf8: + - Frame1 class: Frame properties: Active: @@ -72,7 +74,9 @@ expression: decoded_viewed Int32: 1 children: [] - referent: referent-1 - name: Frame2 + name: + Utf8: + - Frame2 class: Frame properties: Active: @@ -141,7 +145,9 @@ expression: decoded_viewed Int32: 1 children: [] - referent: referent-2 - name: Frame3 + name: + Utf8: + - Frame3 class: Frame properties: Active: @@ -209,4 +215,3 @@ expression: decoded_viewed ZIndex: Int32: 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-parts__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-parts__decoded.snap index c7f9aa77f..6d8e69bdb 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-parts__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-unique-parts__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Brush your teeth + name: + Utf8: + - Brush your teeth class: Part properties: Anchored: @@ -124,7 +126,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-1 - name: Eat your greens + name: + Utf8: + - Eat your greens class: Part properties: Anchored: @@ -250,7 +254,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-2 - name: Live wildly + name: + Utf8: + - Live wildly class: Part properties: Anchored: @@ -375,4 +381,3 @@ expression: decoded_viewed - 0 - 0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-vector3values__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-vector3values__decoded.snap index 564907175..eb7d3a3e1 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-vector3values__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__three-vector3values__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: "1337, -1337, 0" + name: + Utf8: + - "1337, -1337, 0" class: Vector3Value properties: Attributes: @@ -19,7 +21,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1" + name: + Utf8: + - "0.15625, -0.15625, 0.1" class: Vector3Value properties: Attributes: @@ -35,7 +39,9 @@ expression: decoded_viewed - 0.1 children: [] - referent: referent-2 - name: "inf, -inf, nan" + name: + Utf8: + - "inf, -inf, nan" class: Vector3Value properties: Attributes: @@ -50,4 +56,3 @@ expression: decoded_viewed - -inf - NaN children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-cframevalues__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-cframevalues__decoded.snap index 2a64965ac..88da4bfd0 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-cframevalues__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-cframevalues__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: "1, 2, 3, 4, 5, 6, -1, -2, -3, -4, -5, -6" + name: + Utf8: + - "1, 2, 3, 4, 5, 6, -1, -2, -3, -4, -5, -6" class: CFrameValue properties: Attributes: @@ -30,7 +32,9 @@ expression: decoded_viewed - -6 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" + name: + Utf8: + - "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" class: CFrameValue properties: Attributes: @@ -56,4 +60,3 @@ expression: decoded_viewed - NaN - NaN children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-imagebuttons__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-imagebuttons__decoded.snap index 608004583..027775d55 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-imagebuttons__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-imagebuttons__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: ImageButton + name: + Utf8: + - ImageButton class: ImageButton properties: Active: @@ -119,7 +121,9 @@ expression: decoded_viewed Int32: 1 children: [] - referent: referent-1 - name: ImageButton + name: + Utf8: + - ImageButton class: ImageButton properties: Active: @@ -234,4 +238,3 @@ expression: decoded_viewed ZIndex: Int32: 1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-particleemitters__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-particleemitters__decoded.snap index 6a2000f3c..7e304d1ea 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-particleemitters__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-particleemitters__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: ParticleEmitter + name: + Utf8: + - ParticleEmitter class: ParticleEmitter properties: Acceleration: @@ -99,7 +101,9 @@ expression: decoded_viewed Float32: 0 children: [] - referent: referent-1 - name: ParticleEmitter + name: + Utf8: + - ParticleEmitter class: ParticleEmitter properties: Acceleration: @@ -194,4 +198,3 @@ expression: decoded_viewed ZOffset: Float32: 0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-ray-values__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-ray-values__decoded.snap index 768f7f2bd..ab9bbaa6a 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-ray-values__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-ray-values__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: "{1, 2, 3}, {-4, -5, -6}" + name: + Utf8: + - "{1, 2, 3}, {-4, -5, -6}" class: RayValue properties: Attributes: @@ -24,7 +26,9 @@ expression: decoded_viewed - -6 children: [] - referent: referent-1 - name: "{inf, -inf, nan}, {0.5, 0.15625, 0.1}" + name: + Utf8: + - "{inf, -inf, nan}, {0.5, 0.15625, 0.1}" class: RayValue properties: Attributes: @@ -44,4 +48,3 @@ expression: decoded_viewed - 0.15625 - 0.1 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-terrainregions__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-terrainregions__decoded.snap index daa7382f4..386f1d913 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-terrainregions__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__two-terrainregions__decoded.snap @@ -1,10 +1,11 @@ --- source: rbx_binary/src/tests/util.rs -assertion_line: 33 expression: decoded_viewed --- - referent: referent-0 - name: Region 1 + name: + Utf8: + - Region 1 class: TerrainRegion properties: Attributes: @@ -27,7 +28,9 @@ expression: decoded_viewed Tags: [] children: [] - referent: referent-1 - name: Region 2 + name: + Utf8: + - Region 2 class: TerrainRegion properties: Attributes: @@ -49,4 +52,3 @@ expression: decoded_viewed Tags: Tags: [] children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__unions__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__unions__decoded.snap index 804d1bdc3..70a1c91ae 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__unions__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__unions__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Red Union 1 + name: + Utf8: + - Red Union 1 class: UnionOperation properties: Anchored: @@ -146,7 +148,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-1 - name: Red Union 2 + name: + Utf8: + - Red Union 2 class: UnionOperation properties: Anchored: @@ -289,7 +293,9 @@ expression: decoded_viewed - 0 children: [] - referent: referent-2 - name: Blue Union + name: + Utf8: + - Blue Union class: UnionOperation properties: Anchored: @@ -431,4 +437,3 @@ expression: decoded_viewed - 0 - 0 children: [] - diff --git a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__weldconstraint__decoded.snap b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__weldconstraint__decoded.snap index 2575b3aca..2f98a323c 100644 --- a/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__weldconstraint__decoded.snap +++ b/rbx_binary/src/tests/snapshots/rbx_binary__tests__util__weldconstraint__decoded.snap @@ -3,7 +3,9 @@ source: rbx_binary/src/tests/util.rs expression: decoded_viewed --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -14,7 +16,9 @@ expression: decoded_viewed Tags: [] children: - referent: referent-1 - name: A + name: + Utf8: + - A class: Part properties: Anchored: @@ -155,7 +159,9 @@ expression: decoded_viewed - 0 children: - referent: referent-2 - name: WeldConstraint + name: + Utf8: + - WeldConstraint class: WeldConstraint properties: Attributes: @@ -186,7 +192,9 @@ expression: decoded_viewed Tags: [] children: [] - referent: referent-3 - name: B + name: + Utf8: + - B class: Part properties: Anchored: @@ -326,4 +334,3 @@ expression: decoded_viewed - 0 - 0 children: [] - diff --git a/rbx_dom_weak/src/dom.rs b/rbx_dom_weak/src/dom.rs index ef93d495a..af604db5b 100644 --- a/rbx_dom_weak/src/dom.rs +++ b/rbx_dom_weak/src/dom.rs @@ -501,7 +501,7 @@ impl CloneContext { .expect("Cannot clone an instance that does not exist"); let builder = InstanceBuilder::new(instance.class) - .with_name(instance.name.to_string()) + .with_name(instance.name.clone()) .with_properties(instance.properties.clone()); let new_ref = builder.referent; diff --git a/rbx_dom_weak/src/instance.rs b/rbx_dom_weak/src/instance.rs index 33535ab54..b087dfc88 100644 --- a/rbx_dom_weak/src/instance.rs +++ b/rbx_dom_weak/src/instance.rs @@ -1,4 +1,4 @@ -use rbx_types::{Ref, Variant}; +use rbx_types::{Ref, RobloxString, Variant}; use ustr::{Ustr, UstrMap}; /** @@ -33,7 +33,7 @@ let dom = WeakDom::new(data_model); #[derive(Debug)] pub struct InstanceBuilder { pub(crate) referent: Ref, - pub(crate) name: String, + pub(crate) name: RobloxString, pub(crate) class: Ustr, pub(crate) properties: Vec<(Ustr, Variant)>, pub(crate) children: Vec, @@ -44,7 +44,7 @@ impl InstanceBuilder { /// used as the instance's Name, unless overwritten later. pub fn new>(class: S) -> Self { let class = class.into(); - let name = class.to_string(); + let name = class.as_str().into(); InstanceBuilder { referent: Ref::new(), @@ -59,7 +59,7 @@ impl InstanceBuilder { /// property table with at least enough space for the given capacity. pub fn with_property_capacity>(class: S, capacity: usize) -> Self { let class = class.into(); - let name = class.to_string(); + let name = class.as_str().into(); InstanceBuilder { referent: Ref::new(), @@ -74,7 +74,7 @@ impl InstanceBuilder { pub fn empty() -> Self { InstanceBuilder { referent: Ref::new(), - name: String::new(), + name: RobloxString::new(), class: Ustr::default(), properties: Vec::new(), children: Vec::new(), @@ -95,7 +95,7 @@ impl InstanceBuilder { } /// Change the name of the `InstanceBuilder`. - pub fn with_name>(self, name: S) -> Self { + pub fn with_name>(self, name: S) -> Self { Self { name: name.into(), ..self @@ -103,7 +103,7 @@ impl InstanceBuilder { } /// Change the name of the `InstanceBuilder`. - pub fn set_name>(&mut self, name: S) { + pub fn set_name>(&mut self, name: S) { self.name = name.into(); } @@ -205,7 +205,7 @@ pub struct Instance { pub(crate) parent: Ref, /// The instance's name, corresponding to the `Name` property. - pub name: String, + pub name: RobloxString, /// The instance's class, corresponding to the `ClassName` property. pub class: Ustr, diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external-2.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external-2.snap index 0958c8f40..385383a35 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external-2.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external-2.snap @@ -3,31 +3,40 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view(&other_dom) --- referent: referent-4 -name: DataModel +name: + Utf8: + - DataModel class: DataModel properties: {} children: - referent: referent-5 - name: Root + name: + Utf8: + - Root class: Folder properties: {} children: - referent: referent-6 - name: Child1 + name: + Utf8: + - Child1 class: Part properties: RefProp: referent-7 children: [] - referent: referent-7 - name: Child2 + name: + Utf8: + - Child2 class: Part properties: RefProp: referent-6 children: [] - referent: referent-8 - name: Child3 + name: + Utf8: + - Child3 class: Part properties: RefProp: "null" children: [] - diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external.snap index 3a35f191b..71b18cd3c 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_into_external.snap @@ -3,26 +3,33 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view(&dom) --- referent: referent-0 -name: Root +name: + Utf8: + - Root class: Folder properties: {} children: - referent: referent-1 - name: Child1 + name: + Utf8: + - Child1 class: Part properties: RefProp: referent-2 children: [] - referent: referent-2 - name: Child2 + name: + Utf8: + - Child2 class: Part properties: RefProp: referent-1 children: [] - referent: referent-3 - name: Child3 + name: + Utf8: + - Child3 class: Part properties: RefProp: "[unknown ID]" children: [] - diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_multiple_into_external.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_multiple_into_external.snap index b58730e07..ec51f8caa 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_multiple_into_external.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_multiple_into_external.snap @@ -3,20 +3,25 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view(&other_dom) --- referent: referent-0 -name: DataModel +name: + Utf8: + - DataModel class: DataModel properties: {} children: - referent: referent-1 - name: Child1 + name: + Utf8: + - Child1 class: Part properties: RefProp: referent-2 children: [] - referent: referent-2 - name: Child2 + name: + Utf8: + - Child2 class: Part properties: RefProp: referent-1 children: [] - diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_within.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_within.snap index 660cc4437..cd5544217 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_within.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__clone_within.snap @@ -3,32 +3,41 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view(&dom) --- referent: referent-0 -name: Root +name: + Utf8: + - Root class: Folder properties: {} children: - referent: referent-1 - name: Child1 + name: + Utf8: + - Child1 class: Part properties: RefProp: referent-0 children: - referent: referent-2 - name: Child2 + name: + Utf8: + - Child2 class: Part properties: RefProp: referent-1 children: [] - referent: referent-3 - name: Child1 + name: + Utf8: + - Child1 class: Part properties: RefProp: referent-0 children: - referent: referent-4 - name: Child2 + name: + Utf8: + - Child2 class: Part properties: RefProp: referent-3 children: [] - diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer-3.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer-3.snap index eb1549f6a..ca47601ec 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer-3.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer-3.snap @@ -3,12 +3,16 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view_children(&dest) --- - referent: referent-0 - name: Target + name: + Utf8: + - Target class: Folder properties: {} children: - referent: referent-1 - name: Some Child + name: + Utf8: + - Some Child class: Part properties: {} children: [] diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer.snap index c778e8e3d..5dca19e2d 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer.snap @@ -3,12 +3,16 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view_children(&source) --- - referent: referent-0 - name: Target + name: + Utf8: + - Target class: Folder properties: {} children: - referent: referent-1 - name: Some Child + name: + Utf8: + - Some Child class: Part properties: {} children: [] diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within-2.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within-2.snap index 4693959a5..7f218d902 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within-2.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within-2.snap @@ -3,22 +3,30 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view_children(&dom) --- - referent: referent-0 - name: Source + name: + Utf8: + - Source class: Folder properties: {} children: [] - referent: referent-3 - name: Dest + name: + Utf8: + - Dest class: Folder properties: {} children: - referent: referent-1 - name: Root + name: + Utf8: + - Root class: Folder properties: {} children: - referent: referent-2 - name: SpawnLocation + name: + Utf8: + - SpawnLocation class: SpawnLocation properties: {} children: [] diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within.snap index b825752ac..0e5212d17 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__dom__test__transfer_within.snap @@ -3,22 +3,30 @@ source: rbx_dom_weak/src/dom.rs expression: viewer.view_children(&dom) --- - referent: referent-0 - name: Source + name: + Utf8: + - Source class: Folder properties: {} children: - referent: referent-1 - name: Root + name: + Utf8: + - Root class: Folder properties: {} children: - referent: referent-2 - name: SpawnLocation + name: + Utf8: + - SpawnLocation class: SpawnLocation properties: {} children: [] - referent: referent-3 - name: Dest + name: + Utf8: + - Dest class: Folder properties: {} children: [] diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__abbreviate_shared_string.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__abbreviate_shared_string.snap index b83e5c9ba..dda1574a5 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__abbreviate_shared_string.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__abbreviate_shared_string.snap @@ -3,7 +3,9 @@ source: rbx_dom_weak/src/viewer.rs expression: "DomViewer::new().view(&dom)" --- referent: referent-0 -name: Root +name: + Utf8: + - Root class: UnionOperation properties: PhysicalConfigData: diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_multi.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_multi.snap index a5a0dc9e8..5785bd116 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_multi.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_multi.snap @@ -1,29 +1,39 @@ --- -source: rbx_dom_weak-v2/src/viewer.rs +source: rbx_dom_weak/src/viewer.rs expression: "DomViewer::new().view(&dom)" --- referent: referent-0 -name: Root +name: + Utf8: + - Root class: Folder properties: {} children: - referent: referent-1 - name: Child 0 + name: + Utf8: + - Child 0 class: Folder properties: {} children: [] - referent: referent-2 - name: Child 1 + name: + Utf8: + - Child 1 class: Folder properties: {} children: [] - referent: referent-3 - name: Child 2 + name: + Utf8: + - Child 2 class: Folder properties: {} children: [] - referent: referent-4 - name: Child 3 + name: + Utf8: + - Child 3 class: Folder properties: {} children: [] diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_single.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_single.snap index 6397ccf9e..0918e735d 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_single.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_single.snap @@ -1,9 +1,11 @@ --- -source: rbx_dom_weak-v2/src/viewer.rs +source: rbx_dom_weak/src/viewer.rs expression: "DomViewer::new().view(&dom)" --- referent: referent-0 -name: Root +name: + Utf8: + - Root class: Folder properties: {} children: [] diff --git a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_values.snap b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_values.snap index 7018f0ce3..a4b6dd167 100644 --- a/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_values.snap +++ b/rbx_dom_weak/src/snapshots/rbx_dom_weak__viewer__test__redact_values.snap @@ -1,9 +1,11 @@ --- -source: rbx_dom_weak-v2/src/viewer.rs +source: rbx_dom_weak/src/viewer.rs expression: "DomViewer::new().view(&dom)" --- referent: referent-0 -name: Root +name: + Utf8: + - Root class: ObjectValue properties: Value: referent-0 diff --git a/rbx_dom_weak/src/viewer.rs b/rbx_dom_weak/src/viewer.rs index e802c1840..017b748f8 100644 --- a/rbx_dom_weak/src/viewer.rs +++ b/rbx_dom_weak/src/viewer.rs @@ -7,6 +7,7 @@ use crate::{ types::{Ref, Variant}, WeakDom, }; +use rbx_types::RobloxString; use serde::{Deserialize, Serialize}; use ustr::Ustr; @@ -136,7 +137,7 @@ impl Default for DomViewer { #[derive(Debug, Clone, Serialize, Deserialize)] pub struct ViewedInstance { referent: String, - name: String, + name: RobloxString, class: Ustr, properties: BTreeMap, children: Vec, diff --git a/rbx_types/src/lib.rs b/rbx_types/src/lib.rs index 1b2c90597..5d813f059 100644 --- a/rbx_types/src/lib.rs +++ b/rbx_types/src/lib.rs @@ -15,6 +15,7 @@ mod lister; mod material_colors; mod physical_properties; mod referent; +mod roblox_string; mod security_capabilities; mod shared_string; mod tags; @@ -33,6 +34,7 @@ pub use font::*; pub use material_colors::*; pub use physical_properties::*; pub use referent::*; +pub use roblox_string::*; pub use security_capabilities::*; pub use shared_string::*; pub use tags::*; diff --git a/rbx_types/src/roblox_string.rs b/rbx_types/src/roblox_string.rs new file mode 100644 index 000000000..6dd1ed004 --- /dev/null +++ b/rbx_types/src/roblox_string.rs @@ -0,0 +1,128 @@ +use std::fmt::Display; + +/// TODO +#[derive(Debug, Clone, PartialEq, Eq, Hash)] +pub enum RobloxString { + Binary(Vec), + Utf8(String), +} + +impl RobloxString { + pub fn new() -> Self { + Self::Utf8(String::new()) + } +} + +impl Default for RobloxString { + fn default() -> Self { + Self::new() + } +} + +impl Display for RobloxString { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + let output = match self { + Self::Utf8(string) => string.to_string(), + Self::Binary(buffer) => String::from_utf8_lossy(buffer).to_string(), + }; + + f.write_str(output.as_str()) + } +} + +impl From> for RobloxString { + fn from(buffer: Vec) -> Self { + if let Ok(string) = std::str::from_utf8(buffer.as_slice()) { + Self::Utf8(string.to_string()) + } else { + Self::Binary(buffer) + } + } +} + +impl From for Vec { + fn from(value: RobloxString) -> Self { + match value { + RobloxString::Binary(buffer) => buffer, + RobloxString::Utf8(string) => string.into_bytes(), + } + } +} + +impl From<&[u8]> for RobloxString { + fn from(buffer: &[u8]) -> Self { + if let Ok(string) = std::str::from_utf8(buffer) { + Self::Utf8(string.to_string()) + } else { + Self::Binary(buffer.to_vec()) + } + } +} + +impl AsRef<[u8]> for RobloxString { + fn as_ref(&self) -> &[u8] { + match self { + RobloxString::Binary(buffer) => buffer.as_slice(), + RobloxString::Utf8(string) => string.as_bytes(), + } + } +} + +impl From for RobloxString { + fn from(value: String) -> Self { + Self::Utf8(value) + } +} + +impl From<&String> for RobloxString { + fn from(value: &String) -> Self { + Self::Utf8(value.to_string()) + } +} + +impl From<&str> for RobloxString { + fn from(value: &str) -> Self { + Self::Utf8(value.to_string()) + } +} + +#[cfg(feature = "serde")] +mod serde_impl { + use super::*; + + use serde::{ser::SerializeTupleVariant, Deserialize, Deserializer, Serialize, Serializer}; + + impl Serialize for RobloxString { + fn serialize(&self, serializer: S) -> Result { + match self { + RobloxString::Binary(buffer) => { + let is_human_readable = serializer.is_human_readable(); + let mut tv = + serializer.serialize_tuple_variant("RobloxString", 0, "Binary", 1)?; + + if is_human_readable { + let encoded = base64::encode(buffer); + tv.serialize_field(&encoded)? + } else { + tv.serialize_field(buffer)? + }; + + tv.end() + } + RobloxString::Utf8(string) => { + let mut tv = + serializer.serialize_tuple_variant("RobloxString", 1, "Utf8", 1)?; + + tv.serialize_field(string)?; + tv.end() + } + } + } + } + + impl<'de> Deserialize<'de> for RobloxString { + fn deserialize>(_deserializer: D) -> Result { + todo!() + } + } +} diff --git a/rbx_util/Cargo.toml b/rbx_util/Cargo.toml index c32cff4e0..dd1f4ec43 100644 --- a/rbx_util/Cargo.toml +++ b/rbx_util/Cargo.toml @@ -21,6 +21,7 @@ name = "rbx-util" [dependencies] rbx_binary = { path = "../rbx_binary", features = ["unstable_text_format"] } +rbx_dom_weak = { path = "../rbx_dom_weak" } rbx_xml = { path = "../rbx_xml" } serde_yaml = "0.8.24" diff --git a/rbx_util/src/remove_prop.rs b/rbx_util/src/remove_prop.rs index b5083f08a..89b6eecef 100644 --- a/rbx_util/src/remove_prop.rs +++ b/rbx_util/src/remove_prop.rs @@ -6,6 +6,7 @@ use std::{ use anyhow::Context as _; use clap::Parser; use fs_err::File; +use rbx_dom_weak::types::RobloxString; use crate::ModelKind; @@ -47,7 +48,14 @@ impl RemovePropCommand { while let Some(referent) = queue.pop() { let inst = dom.get_by_ref_mut(referent).unwrap(); if inst.class == self.class_name { - log::trace!("Removed property {}.{}", inst.name, self.prop_name); + let name_as_string = match &inst.name { + RobloxString::Binary(buffer) => { + String::from_utf8_lossy(buffer.as_slice()).to_string() + } + RobloxString::Utf8(string) => string.to_string(), + }; + + log::trace!("Removed property {}.{}", name_as_string, self.prop_name); inst.properties.remove(&self.prop_name.as_str().into()); } queue.extend_from_slice(inst.children()); diff --git a/rbx_xml/src/deserializer.rs b/rbx_xml/src/deserializer.rs index bd07b520d..3665529f0 100644 --- a/rbx_xml/src/deserializer.rs +++ b/rbx_xml/src/deserializer.rs @@ -497,14 +497,14 @@ fn deserialize_instance( instance.name = match properties.remove(&"Name".into()) { Some(value) => match value { - Variant::String(value) => value, + Variant::String(value) => value.into(), _ => return Err(reader.error(DecodeErrorKind::NameMustBeString(value.ty()))), }, // TODO: Use reflection to get default name instead. This should only // matter for ValueBase instances in files created by tools other than // Roblox Studio. - None => instance.class.to_string(), + None => instance.class.as_str().into(), }; instance.properties = properties.into_iter().collect(); diff --git a/rbx_xml/src/serializer.rs b/rbx_xml/src/serializer.rs index 7708578be..00aa2a13e 100644 --- a/rbx_xml/src/serializer.rs +++ b/rbx_xml/src/serializer.rs @@ -2,7 +2,7 @@ use std::{borrow::Cow, collections::BTreeMap, io::Write}; use ahash::{HashMap, HashMapExt}; use rbx_dom_weak::{ - types::{Ref, SharedString, SharedStringHash, Variant, VariantType}, + types::{Ref, RobloxString, SharedString, SharedStringHash, Variant, VariantType}, WeakDom, }; use rbx_reflection::{DataType, PropertyKind, PropertySerialization, ReflectionDatabase}; @@ -178,12 +178,12 @@ fn serialize_instance<'dom, W: Write>( writer.write(XmlWriteEvent::start_element("Properties"))?; - write_value_xml( - writer, - state, - "Name", - &Variant::String(instance.name.clone()), - )?; + let name_as_string = match &instance.name { + RobloxString::Binary(buffer) => String::from_utf8_lossy(buffer.as_slice()).to_string(), + RobloxString::Utf8(string) => string.to_string(), + }; + + write_value_xml(writer, state, "Name", &Variant::String(name_as_string))?; // Move references to our properties into property_buffer so we can sort // them and iterate them in order. diff --git a/rbx_xml/src/tests/basic.rs b/rbx_xml/src/tests/basic.rs index 7169844f4..ce757edba 100644 --- a/rbx_xml/src/tests/basic.rs +++ b/rbx_xml/src/tests/basic.rs @@ -27,7 +27,7 @@ fn with_bool() { let root = tree.root(); let child = tree.get_by_ref(root.children()[0]).unwrap(); - assert_eq!(child.name, "BoolValue"); + assert_eq!(child.name, "BoolValue".into()); assert_eq!(child.class, "BoolValue"); assert_eq!( child.properties.get(&"Value".into()), @@ -279,7 +279,7 @@ fn read_unique_id() { let root = tree.root(); let child = tree.get_by_ref(root.children()[0]).unwrap(); - assert_eq!(child.name, "Workspace"); + assert_eq!(child.name, "Workspace".into()); assert_eq!(child.class, "Workspace"); assert_eq!( diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__decoded.snap index a1a090cbe..9903cb110 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -89,4 +91,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__roundtrip.snap index 4ce051375..57557504f 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__attributes__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -89,4 +91,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__decoded.snap index 250f72437..4f2d12933 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: "" + name: + Utf8: + - "" class: ArcHandles properties: Adornee: "null" @@ -24,7 +26,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-1 - name: X + name: + Utf8: + - X class: ArcHandles properties: Adornee: "null" @@ -46,7 +50,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-2 - name: "X, Y" + name: + Utf8: + - "X, Y" class: ArcHandles properties: Adornee: "null" @@ -69,7 +75,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-3 - name: "X, Y, Z" + name: + Utf8: + - "X, Y, Z" class: ArcHandles properties: Adornee: "null" @@ -93,7 +101,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-4 - name: "X, Z" + name: + Utf8: + - "X, Z" class: ArcHandles properties: Adornee: "null" @@ -116,7 +126,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-5 - name: Y + name: + Utf8: + - Y class: ArcHandles properties: Adornee: "null" @@ -138,7 +150,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-6 - name: "Y, Z" + name: + Utf8: + - "Y, Z" class: ArcHandles properties: Adornee: "null" @@ -161,7 +175,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-7 - name: Z + name: + Utf8: + - Z class: ArcHandles properties: Adornee: "null" @@ -182,4 +198,3 @@ expression: "DomViewer::new().view_children(&decoded)" Visible: Bool: true children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__roundtrip.snap index b58d8a054..4ed3f71e4 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__axes__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: "" + name: + Utf8: + - "" class: ArcHandles properties: Adornee: "null" @@ -24,7 +26,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-1 - name: X + name: + Utf8: + - X class: ArcHandles properties: Adornee: "null" @@ -46,7 +50,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-2 - name: "X, Y" + name: + Utf8: + - "X, Y" class: ArcHandles properties: Adornee: "null" @@ -69,7 +75,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-3 - name: "X, Y, Z" + name: + Utf8: + - "X, Y, Z" class: ArcHandles properties: Adornee: "null" @@ -93,7 +101,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-4 - name: "X, Z" + name: + Utf8: + - "X, Z" class: ArcHandles properties: Adornee: "null" @@ -116,7 +126,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-5 - name: Y + name: + Utf8: + - Y class: ArcHandles properties: Adornee: "null" @@ -138,7 +150,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-6 - name: "Y, Z" + name: + Utf8: + - "Y, Z" class: ArcHandles properties: Adornee: "null" @@ -161,7 +175,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-7 - name: Z + name: + Utf8: + - Z class: ArcHandles properties: Adornee: "null" @@ -182,4 +198,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Visible: Bool: true children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__decoded.snap index 0190506eb..84254fdd2 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Bloom + name: + Utf8: + - Bloom class: BloomEffect properties: Attributes: @@ -19,4 +21,3 @@ expression: "DomViewer::new().view_children(&decoded)" Threshold: Float32: 2.285 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__roundtrip.snap index d32e80761..623d19c45 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__bloomeffect__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Bloom + name: + Utf8: + - Bloom class: BloomEffect properties: Attributes: @@ -19,4 +21,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Threshold: Float32: 2.285 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__decoded.snap index 4743695b1..0e0a401f3 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: "0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0" + name: + Utf8: + - "0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0" class: CFrameValue properties: Attributes: @@ -30,7 +32,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" + name: + Utf8: + - "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" class: CFrameValue properties: Attributes: @@ -56,4 +60,3 @@ expression: "DomViewer::new().view_children(&decoded)" - NaN - NaN children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__roundtrip.snap index 48803f4c8..4f24f8e77 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__cframe-case-mixture__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: "0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0" + name: + Utf8: + - "0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0" class: CFrameValue properties: Attributes: @@ -30,7 +32,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" + name: + Utf8: + - "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" class: CFrameValue properties: Attributes: @@ -56,4 +60,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - NaN - NaN children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__decoded.snap index a6d2e6a4c..8990b2108 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -11,4 +13,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__roundtrip.snap index 4161a5a99..c8f2c2044 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-folder__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -11,4 +13,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__decoded.snap index 6e54c1fd2..330f152fa 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: ModuleScript + name: + Utf8: + - ModuleScript class: ModuleScript properties: Attributes: @@ -17,4 +19,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__roundtrip.snap index b4ab7c5ca..8f529a290 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__default-inserted-modulescript__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: ModuleScript + name: + Utf8: + - ModuleScript class: ModuleScript properties: Attributes: @@ -17,4 +19,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__decoded.snap index f13c62397..dc1a6e189 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Bold Denk + name: + Utf8: + - Bold Denk class: TextLabel properties: Active: @@ -125,4 +127,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__roundtrip.snap index 48d025363..842a504eb 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__empty-font__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Bold Denk + name: + Utf8: + - Bold Denk class: TextLabel properties: Active: @@ -125,4 +127,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__decoded.snap index e75a9faee..a4cf72a4c 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: "" + name: + Utf8: + - "" class: Handles properties: Adornee: "null" @@ -26,7 +28,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-1 - name: Right + name: + Utf8: + - Right class: Handles properties: Adornee: "null" @@ -50,7 +54,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-2 - name: "Right, Top" + name: + Utf8: + - "Right, Top" class: Handles properties: Adornee: "null" @@ -75,7 +81,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-3 - name: "Right, Top, Back" + name: + Utf8: + - "Right, Top, Back" class: Handles properties: Adornee: "null" @@ -101,7 +109,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-4 - name: "Right, Top, Back, Left" + name: + Utf8: + - "Right, Top, Back, Left" class: Handles properties: Adornee: "null" @@ -128,7 +138,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-5 - name: "Right, Top, Back, Left, Bottom" + name: + Utf8: + - "Right, Top, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -156,7 +168,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-6 - name: "Right, Top, Back, Left, Bottom, Front" + name: + Utf8: + - "Right, Top, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -185,7 +199,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-7 - name: "Right, Top, Back, Left, Front" + name: + Utf8: + - "Right, Top, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -213,7 +229,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-8 - name: "Right, Top, Back, Bottom" + name: + Utf8: + - "Right, Top, Back, Bottom" class: Handles properties: Adornee: "null" @@ -240,7 +258,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-9 - name: "Right, Top, Back, Bottom, Front" + name: + Utf8: + - "Right, Top, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -268,7 +288,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-10 - name: "Right, Top, Back, Front" + name: + Utf8: + - "Right, Top, Back, Front" class: Handles properties: Adornee: "null" @@ -295,7 +317,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-11 - name: "Right, Top, Left" + name: + Utf8: + - "Right, Top, Left" class: Handles properties: Adornee: "null" @@ -321,7 +345,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-12 - name: "Right, Top, Left, Bottom" + name: + Utf8: + - "Right, Top, Left, Bottom" class: Handles properties: Adornee: "null" @@ -348,7 +374,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-13 - name: "Right, Top, Left, Bottom, Front" + name: + Utf8: + - "Right, Top, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -376,7 +404,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-14 - name: "Right, Top, Left, Front" + name: + Utf8: + - "Right, Top, Left, Front" class: Handles properties: Adornee: "null" @@ -403,7 +433,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-15 - name: "Right, Top, Bottom" + name: + Utf8: + - "Right, Top, Bottom" class: Handles properties: Adornee: "null" @@ -429,7 +461,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-16 - name: "Right, Top, Bottom, Front" + name: + Utf8: + - "Right, Top, Bottom, Front" class: Handles properties: Adornee: "null" @@ -456,7 +490,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-17 - name: "Right, Top, Front" + name: + Utf8: + - "Right, Top, Front" class: Handles properties: Adornee: "null" @@ -482,7 +518,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-18 - name: "Right, Back" + name: + Utf8: + - "Right, Back" class: Handles properties: Adornee: "null" @@ -507,7 +545,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-19 - name: "Right, Back, Left" + name: + Utf8: + - "Right, Back, Left" class: Handles properties: Adornee: "null" @@ -533,7 +573,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-20 - name: "Right, Back, Left, Bottom" + name: + Utf8: + - "Right, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -560,7 +602,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-21 - name: "Right, Back, Left, Bottom, Front" + name: + Utf8: + - "Right, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -588,7 +632,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-22 - name: "Right, Back, Left, Front" + name: + Utf8: + - "Right, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -615,7 +661,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-23 - name: "Right, Back, Bottom" + name: + Utf8: + - "Right, Back, Bottom" class: Handles properties: Adornee: "null" @@ -641,7 +689,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-24 - name: "Right, Back, Bottom, Front" + name: + Utf8: + - "Right, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -668,7 +718,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-25 - name: "Right, Back, Front" + name: + Utf8: + - "Right, Back, Front" class: Handles properties: Adornee: "null" @@ -694,7 +746,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-26 - name: "Right, Left" + name: + Utf8: + - "Right, Left" class: Handles properties: Adornee: "null" @@ -719,7 +773,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-27 - name: "Right, Left, Bottom" + name: + Utf8: + - "Right, Left, Bottom" class: Handles properties: Adornee: "null" @@ -745,7 +801,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-28 - name: "Right, Left, Bottom, Front" + name: + Utf8: + - "Right, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -772,7 +830,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-29 - name: "Right, Left, Front" + name: + Utf8: + - "Right, Left, Front" class: Handles properties: Adornee: "null" @@ -798,7 +858,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-30 - name: "Right, Bottom" + name: + Utf8: + - "Right, Bottom" class: Handles properties: Adornee: "null" @@ -823,7 +885,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-31 - name: "Right, Bottom, Front" + name: + Utf8: + - "Right, Bottom, Front" class: Handles properties: Adornee: "null" @@ -849,7 +913,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-32 - name: "Right, Front" + name: + Utf8: + - "Right, Front" class: Handles properties: Adornee: "null" @@ -874,7 +940,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-33 - name: Top + name: + Utf8: + - Top class: Handles properties: Adornee: "null" @@ -898,7 +966,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-34 - name: "Top, Back" + name: + Utf8: + - "Top, Back" class: Handles properties: Adornee: "null" @@ -923,7 +993,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-35 - name: "Top, Back, Left" + name: + Utf8: + - "Top, Back, Left" class: Handles properties: Adornee: "null" @@ -949,7 +1021,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-36 - name: "Top, Back, Left, Bottom" + name: + Utf8: + - "Top, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -976,7 +1050,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-37 - name: "Top, Back, Left, Bottom, Front" + name: + Utf8: + - "Top, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1004,7 +1080,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-38 - name: "Top, Back, Left, Front" + name: + Utf8: + - "Top, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -1031,7 +1109,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-39 - name: "Top, Back, Bottom" + name: + Utf8: + - "Top, Back, Bottom" class: Handles properties: Adornee: "null" @@ -1057,7 +1137,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-40 - name: "Top, Back, Bottom, Front" + name: + Utf8: + - "Top, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1084,7 +1166,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-41 - name: "Top, Back, Front" + name: + Utf8: + - "Top, Back, Front" class: Handles properties: Adornee: "null" @@ -1110,7 +1194,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-42 - name: "Top, Left" + name: + Utf8: + - "Top, Left" class: Handles properties: Adornee: "null" @@ -1135,7 +1221,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-43 - name: "Top, Left, Bottom" + name: + Utf8: + - "Top, Left, Bottom" class: Handles properties: Adornee: "null" @@ -1161,7 +1249,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-44 - name: "Top, Left, Bottom, Front" + name: + Utf8: + - "Top, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1188,7 +1278,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-45 - name: "Top, Left, Front" + name: + Utf8: + - "Top, Left, Front" class: Handles properties: Adornee: "null" @@ -1214,7 +1306,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-46 - name: "Top, Bottom" + name: + Utf8: + - "Top, Bottom" class: Handles properties: Adornee: "null" @@ -1239,7 +1333,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-47 - name: "Top, Bottom, Front" + name: + Utf8: + - "Top, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1265,7 +1361,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-48 - name: "Top, Front" + name: + Utf8: + - "Top, Front" class: Handles properties: Adornee: "null" @@ -1290,7 +1388,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-49 - name: Back + name: + Utf8: + - Back class: Handles properties: Adornee: "null" @@ -1314,7 +1414,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-50 - name: "Back, Left" + name: + Utf8: + - "Back, Left" class: Handles properties: Adornee: "null" @@ -1339,7 +1441,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-51 - name: "Back, Left, Bottom" + name: + Utf8: + - "Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -1365,7 +1469,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-52 - name: "Back, Left, Bottom, Front" + name: + Utf8: + - "Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1392,7 +1498,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-53 - name: "Back, Left, Front" + name: + Utf8: + - "Back, Left, Front" class: Handles properties: Adornee: "null" @@ -1418,7 +1526,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-54 - name: "Back, Bottom" + name: + Utf8: + - "Back, Bottom" class: Handles properties: Adornee: "null" @@ -1443,7 +1553,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-55 - name: "Back, Bottom, Front" + name: + Utf8: + - "Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1469,7 +1581,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-56 - name: "Back, Front" + name: + Utf8: + - "Back, Front" class: Handles properties: Adornee: "null" @@ -1494,7 +1608,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-57 - name: Left + name: + Utf8: + - Left class: Handles properties: Adornee: "null" @@ -1518,7 +1634,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-58 - name: "Left, Bottom" + name: + Utf8: + - "Left, Bottom" class: Handles properties: Adornee: "null" @@ -1543,7 +1661,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-59 - name: "Left, Bottom, Front" + name: + Utf8: + - "Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1569,7 +1689,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-60 - name: "Left, Front" + name: + Utf8: + - "Left, Front" class: Handles properties: Adornee: "null" @@ -1594,7 +1716,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-61 - name: Bottom + name: + Utf8: + - Bottom class: Handles properties: Adornee: "null" @@ -1618,7 +1742,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-62 - name: "Bottom, Front" + name: + Utf8: + - "Bottom, Front" class: Handles properties: Adornee: "null" @@ -1643,7 +1769,9 @@ expression: "DomViewer::new().view_children(&decoded)" Bool: true children: [] - referent: referent-63 - name: Front + name: + Utf8: + - Front class: Handles properties: Adornee: "null" @@ -1666,4 +1794,3 @@ expression: "DomViewer::new().view_children(&decoded)" Visible: Bool: true children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__roundtrip.snap index 2378eb2ed..d9293ed28 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__faces__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: "" + name: + Utf8: + - "" class: Handles properties: Adornee: "null" @@ -26,7 +28,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-1 - name: Right + name: + Utf8: + - Right class: Handles properties: Adornee: "null" @@ -50,7 +54,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-2 - name: "Right, Top" + name: + Utf8: + - "Right, Top" class: Handles properties: Adornee: "null" @@ -75,7 +81,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-3 - name: "Right, Top, Back" + name: + Utf8: + - "Right, Top, Back" class: Handles properties: Adornee: "null" @@ -101,7 +109,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-4 - name: "Right, Top, Back, Left" + name: + Utf8: + - "Right, Top, Back, Left" class: Handles properties: Adornee: "null" @@ -128,7 +138,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-5 - name: "Right, Top, Back, Left, Bottom" + name: + Utf8: + - "Right, Top, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -156,7 +168,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-6 - name: "Right, Top, Back, Left, Bottom, Front" + name: + Utf8: + - "Right, Top, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -185,7 +199,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-7 - name: "Right, Top, Back, Left, Front" + name: + Utf8: + - "Right, Top, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -213,7 +229,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-8 - name: "Right, Top, Back, Bottom" + name: + Utf8: + - "Right, Top, Back, Bottom" class: Handles properties: Adornee: "null" @@ -240,7 +258,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-9 - name: "Right, Top, Back, Bottom, Front" + name: + Utf8: + - "Right, Top, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -268,7 +288,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-10 - name: "Right, Top, Back, Front" + name: + Utf8: + - "Right, Top, Back, Front" class: Handles properties: Adornee: "null" @@ -295,7 +317,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-11 - name: "Right, Top, Left" + name: + Utf8: + - "Right, Top, Left" class: Handles properties: Adornee: "null" @@ -321,7 +345,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-12 - name: "Right, Top, Left, Bottom" + name: + Utf8: + - "Right, Top, Left, Bottom" class: Handles properties: Adornee: "null" @@ -348,7 +374,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-13 - name: "Right, Top, Left, Bottom, Front" + name: + Utf8: + - "Right, Top, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -376,7 +404,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-14 - name: "Right, Top, Left, Front" + name: + Utf8: + - "Right, Top, Left, Front" class: Handles properties: Adornee: "null" @@ -403,7 +433,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-15 - name: "Right, Top, Bottom" + name: + Utf8: + - "Right, Top, Bottom" class: Handles properties: Adornee: "null" @@ -429,7 +461,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-16 - name: "Right, Top, Bottom, Front" + name: + Utf8: + - "Right, Top, Bottom, Front" class: Handles properties: Adornee: "null" @@ -456,7 +490,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-17 - name: "Right, Top, Front" + name: + Utf8: + - "Right, Top, Front" class: Handles properties: Adornee: "null" @@ -482,7 +518,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-18 - name: "Right, Back" + name: + Utf8: + - "Right, Back" class: Handles properties: Adornee: "null" @@ -507,7 +545,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-19 - name: "Right, Back, Left" + name: + Utf8: + - "Right, Back, Left" class: Handles properties: Adornee: "null" @@ -533,7 +573,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-20 - name: "Right, Back, Left, Bottom" + name: + Utf8: + - "Right, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -560,7 +602,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-21 - name: "Right, Back, Left, Bottom, Front" + name: + Utf8: + - "Right, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -588,7 +632,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-22 - name: "Right, Back, Left, Front" + name: + Utf8: + - "Right, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -615,7 +661,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-23 - name: "Right, Back, Bottom" + name: + Utf8: + - "Right, Back, Bottom" class: Handles properties: Adornee: "null" @@ -641,7 +689,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-24 - name: "Right, Back, Bottom, Front" + name: + Utf8: + - "Right, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -668,7 +718,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-25 - name: "Right, Back, Front" + name: + Utf8: + - "Right, Back, Front" class: Handles properties: Adornee: "null" @@ -694,7 +746,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-26 - name: "Right, Left" + name: + Utf8: + - "Right, Left" class: Handles properties: Adornee: "null" @@ -719,7 +773,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-27 - name: "Right, Left, Bottom" + name: + Utf8: + - "Right, Left, Bottom" class: Handles properties: Adornee: "null" @@ -745,7 +801,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-28 - name: "Right, Left, Bottom, Front" + name: + Utf8: + - "Right, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -772,7 +830,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-29 - name: "Right, Left, Front" + name: + Utf8: + - "Right, Left, Front" class: Handles properties: Adornee: "null" @@ -798,7 +858,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-30 - name: "Right, Bottom" + name: + Utf8: + - "Right, Bottom" class: Handles properties: Adornee: "null" @@ -823,7 +885,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-31 - name: "Right, Bottom, Front" + name: + Utf8: + - "Right, Bottom, Front" class: Handles properties: Adornee: "null" @@ -849,7 +913,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-32 - name: "Right, Front" + name: + Utf8: + - "Right, Front" class: Handles properties: Adornee: "null" @@ -874,7 +940,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-33 - name: Top + name: + Utf8: + - Top class: Handles properties: Adornee: "null" @@ -898,7 +966,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-34 - name: "Top, Back" + name: + Utf8: + - "Top, Back" class: Handles properties: Adornee: "null" @@ -923,7 +993,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-35 - name: "Top, Back, Left" + name: + Utf8: + - "Top, Back, Left" class: Handles properties: Adornee: "null" @@ -949,7 +1021,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-36 - name: "Top, Back, Left, Bottom" + name: + Utf8: + - "Top, Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -976,7 +1050,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-37 - name: "Top, Back, Left, Bottom, Front" + name: + Utf8: + - "Top, Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1004,7 +1080,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-38 - name: "Top, Back, Left, Front" + name: + Utf8: + - "Top, Back, Left, Front" class: Handles properties: Adornee: "null" @@ -1031,7 +1109,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-39 - name: "Top, Back, Bottom" + name: + Utf8: + - "Top, Back, Bottom" class: Handles properties: Adornee: "null" @@ -1057,7 +1137,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-40 - name: "Top, Back, Bottom, Front" + name: + Utf8: + - "Top, Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1084,7 +1166,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-41 - name: "Top, Back, Front" + name: + Utf8: + - "Top, Back, Front" class: Handles properties: Adornee: "null" @@ -1110,7 +1194,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-42 - name: "Top, Left" + name: + Utf8: + - "Top, Left" class: Handles properties: Adornee: "null" @@ -1135,7 +1221,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-43 - name: "Top, Left, Bottom" + name: + Utf8: + - "Top, Left, Bottom" class: Handles properties: Adornee: "null" @@ -1161,7 +1249,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-44 - name: "Top, Left, Bottom, Front" + name: + Utf8: + - "Top, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1188,7 +1278,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-45 - name: "Top, Left, Front" + name: + Utf8: + - "Top, Left, Front" class: Handles properties: Adornee: "null" @@ -1214,7 +1306,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-46 - name: "Top, Bottom" + name: + Utf8: + - "Top, Bottom" class: Handles properties: Adornee: "null" @@ -1239,7 +1333,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-47 - name: "Top, Bottom, Front" + name: + Utf8: + - "Top, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1265,7 +1361,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-48 - name: "Top, Front" + name: + Utf8: + - "Top, Front" class: Handles properties: Adornee: "null" @@ -1290,7 +1388,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-49 - name: Back + name: + Utf8: + - Back class: Handles properties: Adornee: "null" @@ -1314,7 +1414,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-50 - name: "Back, Left" + name: + Utf8: + - "Back, Left" class: Handles properties: Adornee: "null" @@ -1339,7 +1441,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-51 - name: "Back, Left, Bottom" + name: + Utf8: + - "Back, Left, Bottom" class: Handles properties: Adornee: "null" @@ -1365,7 +1469,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-52 - name: "Back, Left, Bottom, Front" + name: + Utf8: + - "Back, Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1392,7 +1498,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-53 - name: "Back, Left, Front" + name: + Utf8: + - "Back, Left, Front" class: Handles properties: Adornee: "null" @@ -1418,7 +1526,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-54 - name: "Back, Bottom" + name: + Utf8: + - "Back, Bottom" class: Handles properties: Adornee: "null" @@ -1443,7 +1553,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-55 - name: "Back, Bottom, Front" + name: + Utf8: + - "Back, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1469,7 +1581,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-56 - name: "Back, Front" + name: + Utf8: + - "Back, Front" class: Handles properties: Adornee: "null" @@ -1494,7 +1608,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-57 - name: Left + name: + Utf8: + - Left class: Handles properties: Adornee: "null" @@ -1518,7 +1634,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-58 - name: "Left, Bottom" + name: + Utf8: + - "Left, Bottom" class: Handles properties: Adornee: "null" @@ -1543,7 +1661,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-59 - name: "Left, Bottom, Front" + name: + Utf8: + - "Left, Bottom, Front" class: Handles properties: Adornee: "null" @@ -1569,7 +1689,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-60 - name: "Left, Front" + name: + Utf8: + - "Left, Front" class: Handles properties: Adornee: "null" @@ -1594,7 +1716,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-61 - name: Bottom + name: + Utf8: + - Bottom class: Handles properties: Adornee: "null" @@ -1618,7 +1742,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-62 - name: "Bottom, Front" + name: + Utf8: + - "Bottom, Front" class: Handles properties: Adornee: "null" @@ -1643,7 +1769,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Bool: true children: [] - referent: referent-63 - name: Front + name: + Utf8: + - Front class: Handles properties: Adornee: "null" @@ -1666,4 +1794,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Visible: Bool: true children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__decoded.snap index 4afeb91d4..99b17b9b7 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -413,4 +415,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__roundtrip.snap index a5fa749e4..ce04b8d4a 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-cframe-attributes__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -413,4 +415,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__decoded.snap index 27baa1dff..39a944665 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__roundtrip.snap index 7f3f27041..7531edca0 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-enum-attribute__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__decoded.snap index bd0aa5b48..e9493d5f2 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -19,4 +21,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__roundtrip.snap index 41156677a..1a51008aa 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__folder-with-font-attribute__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -19,4 +21,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__formatting__deserialized.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__formatting__deserialized.snap index 3b09d9672..b9ca889a2 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__formatting__deserialized.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__formatting__deserialized.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/formatting.rs expression: "DomViewer::new().view_children(&de)" --- - referent: referent-0 - name: TestClass + name: + Utf8: + - TestClass class: TestClass properties: TestAxes: @@ -54,7 +56,9 @@ expression: "DomViewer::new().view_children(&de)" Content: "" children: - referent: referent-1 - name: TestClass + name: + Utf8: + - TestClass class: TestClass properties: TestDouble: @@ -78,7 +82,9 @@ expression: "DomViewer::new().view_children(&de)" Int64: 8675309 children: [] - referent: referent-2 - name: TestClass + name: + Utf8: + - TestClass class: TestClass properties: TestNumberRange: @@ -114,7 +120,9 @@ expression: "DomViewer::new().view_children(&de)" - -inf children: - referent: referent-3 - name: TestClass + name: + Utf8: + - TestClass class: TestClass properties: TestEnum: @@ -182,4 +190,3 @@ expression: "DomViewer::new().view_children(&de)" - 0 - 10 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__decoded.snap index 90382dce9..1b51b46ad 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: NumberValue properties: Attributes: @@ -13,4 +15,3 @@ expression: "DomViewer::new().view_children(&decoded)" Value: Float64: 1.23456 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__roundtrip.snap index 4e91bc2a8..786c70581 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-numbervalue__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: NumberValue properties: Attributes: @@ -13,4 +15,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Value: Float64: 1.23456 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__decoded.snap index 795ac23f3..078dda794 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: UIPadding + name: + Utf8: + - UIPadding class: UIPadding properties: Attributes: @@ -27,4 +29,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__roundtrip.snap index 7cddd1ee9..592690acc 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__funny-uipadding__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: UIPadding + name: + Utf8: + - UIPadding class: UIPadding properties: Attributes: @@ -27,4 +29,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__decoded.snap index 37d3a6159..41135b47e 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: - referent: referent-1 - name: "IgnoreGuiInset: true" + name: + Utf8: + - "IgnoreGuiInset: true" class: ScreenGui properties: Attributes: @@ -52,7 +56,9 @@ expression: "DomViewer::new().view_children(&decoded)" Enum: 1 children: [] - referent: referent-2 - name: "IgnoreGuiInset: false" + name: + Utf8: + - "IgnoreGuiInset: false" class: ScreenGui properties: Attributes: @@ -90,7 +96,9 @@ expression: "DomViewer::new().view_children(&decoded)" Enum: 1 children: - referent: referent-3 - name: TextLabel + name: + Utf8: + - TextLabel class: TextLabel properties: Active: @@ -213,7 +221,9 @@ expression: "DomViewer::new().view_children(&decoded)" Int32: 1 children: [] - referent: referent-4 - name: TextButton + name: + Utf8: + - TextButton class: TextButton properties: Active: @@ -344,7 +354,9 @@ expression: "DomViewer::new().view_children(&decoded)" Int32: 1 children: [] - referent: referent-5 - name: TextBox + name: + Utf8: + - TextBox class: TextBox properties: Active: @@ -481,4 +493,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__roundtrip.snap index 196818e03..0f322afc7 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__gui-inset-and-font-migration__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: - referent: referent-1 - name: "IgnoreGuiInset: true" + name: + Utf8: + - "IgnoreGuiInset: true" class: ScreenGui properties: Attributes: @@ -52,7 +56,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Enum: 1 children: [] - referent: referent-2 - name: "IgnoreGuiInset: false" + name: + Utf8: + - "IgnoreGuiInset: false" class: ScreenGui properties: Attributes: @@ -90,7 +96,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Enum: 1 children: - referent: referent-3 - name: TextLabel + name: + Utf8: + - TextLabel class: TextLabel properties: Active: @@ -213,7 +221,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Int32: 1 children: [] - referent: referent-4 - name: TextButton + name: + Utf8: + - TextButton class: TextButton properties: Active: @@ -344,7 +354,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Int32: 1 children: [] - referent: referent-5 - name: TextBox + name: + Utf8: + - TextBox class: TextBox properties: Active: @@ -481,4 +493,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__decoded.snap index 1e5b32092..1331ff0e9 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Lighting + name: + Utf8: + - Lighting class: Lighting properties: Ambient: @@ -68,4 +70,3 @@ expression: "DomViewer::new().view_children(&decoded)" TimeOfDay: String: "14:30:00" children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__roundtrip.snap index 87bb83aaf..4cb866621 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__lighting-with-int32-attribute__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Lighting + name: + Utf8: + - Lighting class: Lighting properties: Ambient: @@ -68,4 +70,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" TimeOfDay: String: "14:30:00" children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__decoded.snap index 1ee8f3f76..baaa31060 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Hmmm + name: + Utf8: + - Hmmm class: NumberValue properties: Attributes: @@ -20,7 +22,9 @@ expression: "DomViewer::new().view_children(&decoded)" Float64: 2.71828182846 children: [] - referent: referent-1 - name: WhereIs + name: + Utf8: + - WhereIs class: NumberValue properties: Attributes: @@ -36,4 +40,3 @@ expression: "DomViewer::new().view_children(&decoded)" Value: Float64: 2.71828182846 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__roundtrip.snap index 7237727a1..17568c6e2 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__number-values-with-security-capabilities__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Hmmm + name: + Utf8: + - Hmmm class: NumberValue properties: Attributes: @@ -20,7 +22,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Float64: 2.71828182846 children: [] - referent: referent-1 - name: WhereIs + name: + Utf8: + - WhereIs class: NumberValue properties: Attributes: @@ -36,4 +40,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Value: Float64: 2.71828182846 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__decoded.snap index d648a51ed..509cb0305 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: None + name: + Utf8: + - None class: Model properties: Attributes: @@ -45,7 +47,9 @@ expression: "DomViewer::new().view_children(&decoded)" OptionalCFrame: ~ children: [] - referent: referent-1 - name: Some + name: + Utf8: + - Some class: Model properties: Attributes: @@ -101,7 +105,9 @@ expression: "DomViewer::new().view_children(&decoded)" - -0.34241003 children: [] - referent: referent-2 - name: SomeInfNaN + name: + Utf8: + - SomeInfNaN class: Model properties: Attributes: @@ -156,4 +162,3 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 - 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__roundtrip.snap index 561731a80..600322aa8 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__optionalcoordinateframe-models__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: None + name: + Utf8: + - None class: Model properties: Attributes: @@ -45,7 +47,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" OptionalCFrame: ~ children: [] - referent: referent-1 - name: Some + name: + Utf8: + - Some class: Model properties: Attributes: @@ -101,7 +105,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - -0.34241003 children: [] - referent: referent-2 - name: SomeInfNaN + name: + Utf8: + - SomeInfNaN class: Model properties: Attributes: @@ -156,4 +162,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 - 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__decoded.snap index 609dab997..2dbfdaca7 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Model + name: + Utf8: + - Model class: Model properties: Attributes: @@ -45,7 +47,9 @@ expression: "DomViewer::new().view_children(&decoded)" OptionalCFrame: ~ children: - referent: referent-1 - name: PackageLink + name: + Utf8: + - PackageLink class: PackageLink properties: Attributes: @@ -61,4 +65,3 @@ expression: "DomViewer::new().view_children(&decoded)" VersionIdSerialize: Int64: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__roundtrip.snap index 39292c76d..8adb9e42e 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__package-link__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Model + name: + Utf8: + - Model class: Model properties: Attributes: @@ -45,7 +47,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" OptionalCFrame: ~ children: - referent: referent-1 - name: PackageLink + name: + Utf8: + - PackageLink class: PackageLink properties: Attributes: @@ -61,4 +65,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" VersionIdSerialize: Int64: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__decoded.snap index e10b87f67..fa4742aae 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -12,7 +14,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -21,4 +25,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] Value: referent-0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__roundtrip.snap index db2f15d8c..48cce2d40 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-adjacent__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -12,7 +14,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -21,4 +25,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] Value: referent-0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__decoded.snap index 6072ab145..c0b8c0393 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -13,7 +15,9 @@ expression: "DomViewer::new().view_children(&decoded)" Value: referent-1 children: - referent: referent-1 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -21,4 +25,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__roundtrip.snap index ca333d437..b1af6dcdb 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-child__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -13,7 +15,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Value: referent-1 children: - referent: referent-1 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -21,4 +25,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__decoded.snap index f76abeff9..6c4efb137 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -12,7 +14,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: - referent: referent-1 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -21,4 +25,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] Value: referent-0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__roundtrip.snap index e6e684030..e3c1b8da6 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__ref-parent__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Ref Target + name: + Utf8: + - Ref Target class: Folder properties: Attributes: @@ -12,7 +14,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: - referent: referent-1 - name: Value + name: + Utf8: + - Value class: ObjectValue properties: Attributes: @@ -21,4 +25,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] Value: referent-0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__decoded.snap index 095c9028d..0ff470beb 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Parts + name: + Utf8: + - Parts class: Model properties: Attributes: @@ -63,7 +65,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0.10633871 children: - referent: referent-1 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -234,7 +238,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-2 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -405,7 +411,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-3 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -576,7 +584,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-4 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -747,7 +757,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-5 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -918,7 +930,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-6 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1089,7 +1103,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-7 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1260,7 +1276,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-8 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1430,4 +1448,3 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__roundtrip.snap index 25be8c4b7..9ce79773b 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__sharedstring__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Parts + name: + Utf8: + - Parts class: Model properties: Attributes: @@ -63,7 +65,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0.10633871 children: - referent: referent-1 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -234,7 +238,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-2 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -405,7 +411,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-3 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -576,7 +584,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-4 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -747,7 +757,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-5 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -918,7 +930,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-6 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1089,7 +1103,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-7 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1260,7 +1276,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-8 - name: Union + name: + Utf8: + - Union class: UnionOperation properties: Anchored: @@ -1430,4 +1448,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__decoded.snap index cefbed3fe..6e1c5f5a4 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -16,4 +18,3 @@ expression: "DomViewer::new().view_children(&decoded)" - My - Tags children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__roundtrip.snap index 217e48b9a..64d2a749a 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__tags__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -16,4 +18,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - My - Tags children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__decoded.snap index 89b29cea0..39ed75a9d 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: TextLabel + name: + Utf8: + - TextLabel class: TextLabel properties: Active: @@ -125,4 +127,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__roundtrip.snap index 6a2068dce..abfb69fcb 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__text-label-with-font__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: TextLabel + name: + Utf8: + - TextLabel class: TextLabel properties: Active: @@ -125,4 +127,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__decoded.snap index 3addb0528..b6d2bc855 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -71,7 +73,9 @@ expression: "DomViewer::new().view_children(&decoded)" Float32: 0 children: [] - referent: referent-1 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -134,7 +138,9 @@ expression: "DomViewer::new().view_children(&decoded)" Float32: 0 children: [] - referent: referent-2 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -201,4 +207,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZOffset: Float32: 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__roundtrip.snap index 5a276816a..8543894e2 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-beams__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -71,7 +73,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Float32: 0 children: [] - referent: referent-1 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -134,7 +138,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Float32: 0 children: [] - referent: referent-2 - name: Beam + name: + Utf8: + - Beam class: Beam properties: Attachment0: "null" @@ -201,4 +207,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZOffset: Float32: 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__decoded.snap index 690edfe70..a396932bc 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&decoded)" BrickColor: 1004 children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -25,7 +29,9 @@ expression: "DomViewer::new().view_children(&decoded)" BrickColor: 37 children: [] - referent: referent-2 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -35,4 +41,3 @@ expression: "DomViewer::new().view_children(&decoded)" Value: BrickColor: 1010 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__roundtrip.snap index 82a80c73e..da6c4f791 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-brickcolorvalues__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" BrickColor: 1004 children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -25,7 +29,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" BrickColor: 37 children: [] - referent: referent-2 - name: Value + name: + Utf8: + - Value class: BrickColorValue properties: Attributes: @@ -35,4 +41,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Value: BrickColor: 1010 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__decoded.snap index c249d03c9..6c8f352ae 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -17,7 +19,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0.49803922 children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -31,7 +35,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0.078431375 children: [] - referent: referent-2 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -44,4 +50,3 @@ expression: "DomViewer::new().view_children(&decoded)" - 1.0196079 - 0.039215688 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__roundtrip.snap index 6c5784146..7c2fc7a87 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-color3values__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -17,7 +19,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0.49803922 children: [] - referent: referent-1 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -31,7 +35,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0.078431375 children: [] - referent: referent-2 - name: Value + name: + Utf8: + - Value class: Color3Value properties: Attributes: @@ -44,4 +50,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 1.0196079 - 0.039215688 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__decoded.snap index e4962fad8..600a46532 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Value=1234567 + name: + Utf8: + - Value=1234567 class: IntValue properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&decoded)" Int64: 1234567 children: [] - referent: referent-1 - name: Value=1337 + name: + Utf8: + - Value=1337 class: IntValue properties: Attributes: @@ -25,7 +29,9 @@ expression: "DomViewer::new().view_children(&decoded)" Int64: 1337 children: [] - referent: referent-2 - name: Value=-7654321 + name: + Utf8: + - Value=-7654321 class: IntValue properties: Attributes: @@ -35,4 +41,3 @@ expression: "DomViewer::new().view_children(&decoded)" Value: Int64: -7654321 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__roundtrip.snap index f0da08b96..c992296ac 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-intvalues__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Value=1234567 + name: + Utf8: + - Value=1234567 class: IntValue properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Int64: 1234567 children: [] - referent: referent-1 - name: Value=1337 + name: + Utf8: + - Value=1337 class: IntValue properties: Attributes: @@ -25,7 +29,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Int64: 1337 children: [] - referent: referent-2 - name: Value=-7654321 + name: + Utf8: + - Value=-7654321 class: IntValue properties: Attributes: @@ -35,4 +41,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Value: Int64: -7654321 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__decoded.snap index fab49f644..8e4662ad8 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Grandparent + name: + Utf8: + - Grandparent class: Folder properties: Attributes: @@ -12,7 +14,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: - referent: referent-1 - name: Parent + name: + Utf8: + - Parent class: Folder properties: Attributes: @@ -21,7 +25,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: - referent: referent-2 - name: Child + name: + Utf8: + - Child class: Folder properties: Attributes: @@ -29,4 +35,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__roundtrip.snap index ab334c189..6543079cc 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-nested-folders__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Grandparent + name: + Utf8: + - Grandparent class: Folder properties: Attributes: @@ -12,7 +14,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: - referent: referent-1 - name: Parent + name: + Utf8: + - Parent class: Folder properties: Attributes: @@ -21,7 +25,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: - referent: referent-2 - name: Child + name: + Utf8: + - Child class: Folder properties: Attributes: @@ -29,4 +35,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__decoded.snap index cda35d6bc..4d782827d 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: DisplayOrder0 + name: + Utf8: + - DisplayOrder0 class: ScreenGui properties: Attributes: @@ -25,7 +27,9 @@ expression: "DomViewer::new().view_children(&decoded)" Enum: 1 children: [] - referent: referent-1 - name: DisplayOrder1 + name: + Utf8: + - DisplayOrder1 class: ScreenGui properties: Attributes: @@ -47,7 +51,9 @@ expression: "DomViewer::new().view_children(&decoded)" Enum: 1 children: [] - referent: referent-2 - name: DisplayOrder2 + name: + Utf8: + - DisplayOrder2 class: ScreenGui properties: Attributes: @@ -68,4 +74,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZIndexBehavior: Enum: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__roundtrip.snap index 150b25242..36829205b 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-screengui__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: DisplayOrder0 + name: + Utf8: + - DisplayOrder0 class: ScreenGui properties: Attributes: @@ -25,7 +27,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Enum: 1 children: [] - referent: referent-1 - name: DisplayOrder1 + name: + Utf8: + - DisplayOrder1 class: ScreenGui properties: Attributes: @@ -47,7 +51,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Enum: 1 children: [] - referent: referent-2 - name: DisplayOrder2 + name: + Utf8: + - DisplayOrder2 class: ScreenGui properties: Attributes: @@ -68,4 +74,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZIndexBehavior: Enum: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__decoded.snap index 139ebbd19..a80532706 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -53,7 +55,9 @@ expression: "DomViewer::new().view_children(&decoded)" envelope: 0 children: [] - referent: referent-1 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -97,7 +101,9 @@ expression: "DomViewer::new().view_children(&decoded)" envelope: 0 children: [] - referent: referent-2 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -137,4 +143,3 @@ expression: "DomViewer::new().view_children(&decoded)" value: 0 envelope: 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__roundtrip.snap index aca7acd6c..5b4da958a 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigradients__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -53,7 +55,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" envelope: 0 children: [] - referent: referent-1 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -97,7 +101,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" envelope: 0 children: [] - referent: referent-2 - name: UIGradient + name: + Utf8: + - UIGradient class: UIGradient properties: Attributes: @@ -137,4 +143,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" value: 0 envelope: 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__decoded.snap index ea2484e89..3e4b8f3bf 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -36,7 +38,9 @@ expression: "DomViewer::new().view_children(&decoded)" Enum: 1 children: [] - referent: referent-1 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -69,7 +73,9 @@ expression: "DomViewer::new().view_children(&decoded)" Enum: 1 children: [] - referent: referent-2 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -101,4 +107,3 @@ expression: "DomViewer::new().view_children(&decoded)" VerticalAlignment: Enum: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__roundtrip.snap index 5a442b50a..4f0202289 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-uigridlayouts__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -36,7 +38,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Enum: 1 children: [] - referent: referent-1 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -69,7 +73,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Enum: 1 children: [] - referent: referent-2 - name: UIGridLayout + name: + Utf8: + - UIGridLayout class: UIGridLayout properties: Attributes: @@ -101,4 +107,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" VerticalAlignment: Enum: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__decoded.snap index 372c69bac..4b1ae105f 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Frame1 + name: + Utf8: + - Frame1 class: Frame properties: Active: @@ -72,7 +74,9 @@ expression: "DomViewer::new().view_children(&decoded)" Int32: 1 children: [] - referent: referent-1 - name: Frame2 + name: + Utf8: + - Frame2 class: Frame properties: Active: @@ -141,7 +145,9 @@ expression: "DomViewer::new().view_children(&decoded)" Int32: 1 children: [] - referent: referent-2 - name: Frame3 + name: + Utf8: + - Frame3 class: Frame properties: Active: @@ -209,4 +215,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__roundtrip.snap index 98e36000f..cb9f042e5 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-frames__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Frame1 + name: + Utf8: + - Frame1 class: Frame properties: Active: @@ -72,7 +74,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Int32: 1 children: [] - referent: referent-1 - name: Frame2 + name: + Utf8: + - Frame2 class: Frame properties: Active: @@ -141,7 +145,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Int32: 1 children: [] - referent: referent-2 - name: Frame3 + name: + Utf8: + - Frame3 class: Frame properties: Active: @@ -209,4 +215,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__decoded.snap index 4f316356b..f10ba512e 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Brush your teeth + name: + Utf8: + - Brush your teeth class: Part properties: Anchored: @@ -124,7 +126,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-1 - name: Eat your greens + name: + Utf8: + - Eat your greens class: Part properties: Anchored: @@ -250,7 +254,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-2 - name: Live wildly + name: + Utf8: + - Live wildly class: Part properties: Anchored: @@ -375,4 +381,3 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__roundtrip.snap index af9bc8d12..4f235bb61 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-unique-parts__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Brush your teeth + name: + Utf8: + - Brush your teeth class: Part properties: Anchored: @@ -124,7 +126,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-1 - name: Eat your greens + name: + Utf8: + - Eat your greens class: Part properties: Anchored: @@ -250,7 +254,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-2 - name: Live wildly + name: + Utf8: + - Live wildly class: Part properties: Anchored: @@ -375,4 +381,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__decoded.snap index 866f38b00..3ce940de2 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: "1337, -1337, 0" + name: + Utf8: + - "1337, -1337, 0" class: Vector3Value properties: Attributes: @@ -19,7 +21,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1" + name: + Utf8: + - "0.15625, -0.15625, 0.1" class: Vector3Value properties: Attributes: @@ -35,7 +39,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0.1 children: [] - referent: referent-2 - name: "inf, -inf, nan" + name: + Utf8: + - "inf, -inf, nan" class: Vector3Value properties: Attributes: @@ -50,4 +56,3 @@ expression: "DomViewer::new().view_children(&decoded)" - -inf - NaN children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__roundtrip.snap index 59ba14688..bd5799954 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__three-vector3values__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: "1337, -1337, 0" + name: + Utf8: + - "1337, -1337, 0" class: Vector3Value properties: Attributes: @@ -19,7 +21,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1" + name: + Utf8: + - "0.15625, -0.15625, 0.1" class: Vector3Value properties: Attributes: @@ -35,7 +39,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0.1 children: [] - referent: referent-2 - name: "inf, -inf, nan" + name: + Utf8: + - "inf, -inf, nan" class: Vector3Value properties: Attributes: @@ -50,4 +56,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - -inf - NaN children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__decoded.snap index 5d9f37fd0..533cc8449 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: "1, 2, 3, 4, 5, 6, -1, -2, -3, -4, -5, -6" + name: + Utf8: + - "1, 2, 3, 4, 5, 6, -1, -2, -3, -4, -5, -6" class: CFrameValue properties: Attributes: @@ -30,7 +32,9 @@ expression: "DomViewer::new().view_children(&decoded)" - -6 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" + name: + Utf8: + - "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" class: CFrameValue properties: Attributes: @@ -56,4 +60,3 @@ expression: "DomViewer::new().view_children(&decoded)" - NaN - NaN children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__roundtrip.snap index 39adfa3d9..45ab447c8 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-cframevalues__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: "1, 2, 3, 4, 5, 6, -1, -2, -3, -4, -5, -6" + name: + Utf8: + - "1, 2, 3, 4, 5, 6, -1, -2, -3, -4, -5, -6" class: CFrameValue properties: Attributes: @@ -30,7 +32,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - -6 children: [] - referent: referent-1 - name: "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" + name: + Utf8: + - "0.15625, -0.15625, 0.1, -0.1, 0, 0, 1337, -1337, inf, -inf, nan, nan" class: CFrameValue properties: Attributes: @@ -56,4 +60,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - NaN - NaN children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__decoded.snap index b7679a16a..10e958e9a 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: ImageButton + name: + Utf8: + - ImageButton class: ImageButton properties: Active: @@ -119,7 +121,9 @@ expression: "DomViewer::new().view_children(&decoded)" Int32: 1 children: [] - referent: referent-1 - name: ImageButton + name: + Utf8: + - ImageButton class: ImageButton properties: Active: @@ -234,4 +238,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__roundtrip.snap index e0442cbf7..7d266c345 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-imagebuttons__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: ImageButton + name: + Utf8: + - ImageButton class: ImageButton properties: Active: @@ -119,7 +121,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Int32: 1 children: [] - referent: referent-1 - name: ImageButton + name: + Utf8: + - ImageButton class: ImageButton properties: Active: @@ -234,4 +238,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZIndex: Int32: 1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__decoded.snap index 269afb7f6..457e6026e 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: ParticleEmitter + name: + Utf8: + - ParticleEmitter class: ParticleEmitter properties: Acceleration: @@ -99,7 +101,9 @@ expression: "DomViewer::new().view_children(&decoded)" Float32: 0 children: [] - referent: referent-1 - name: ParticleEmitter + name: + Utf8: + - ParticleEmitter class: ParticleEmitter properties: Acceleration: @@ -194,4 +198,3 @@ expression: "DomViewer::new().view_children(&decoded)" ZOffset: Float32: 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__roundtrip.snap index 07fd45fd2..07a08ca58 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-particleemitters__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: ParticleEmitter + name: + Utf8: + - ParticleEmitter class: ParticleEmitter properties: Acceleration: @@ -99,7 +101,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Float32: 0 children: [] - referent: referent-1 - name: ParticleEmitter + name: + Utf8: + - ParticleEmitter class: ParticleEmitter properties: Acceleration: @@ -194,4 +198,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" ZOffset: Float32: 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__decoded.snap index 8f7b0f70f..509e9416e 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: "{1, 2, 3}, {-4, -5, -6}" + name: + Utf8: + - "{1, 2, 3}, {-4, -5, -6}" class: RayValue properties: Attributes: @@ -24,7 +26,9 @@ expression: "DomViewer::new().view_children(&decoded)" - -6 children: [] - referent: referent-1 - name: "{inf, -inf, nan}, {0.5, 0.15625, 0.1}" + name: + Utf8: + - "{inf, -inf, nan}, {0.5, 0.15625, 0.1}" class: RayValue properties: Attributes: @@ -44,4 +48,3 @@ expression: "DomViewer::new().view_children(&decoded)" - 0.15625 - 0.1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__roundtrip.snap index 74a9b25c2..b78ed319e 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-ray-values__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: "{1, 2, 3}, {-4, -5, -6}" + name: + Utf8: + - "{1, 2, 3}, {-4, -5, -6}" class: RayValue properties: Attributes: @@ -24,7 +26,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - -6 children: [] - referent: referent-1 - name: "{inf, -inf, nan}, {0.5, 0.15625, 0.1}" + name: + Utf8: + - "{inf, -inf, nan}, {0.5, 0.15625, 0.1}" class: RayValue properties: Attributes: @@ -44,4 +48,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0.15625 - 0.1 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__decoded.snap index 940dbedaf..392fbb4be 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Region 1 + name: + Utf8: + - Region 1 class: TerrainRegion properties: Attributes: @@ -26,7 +28,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: [] - referent: referent-1 - name: Region 2 + name: + Utf8: + - Region 2 class: TerrainRegion properties: Attributes: @@ -48,4 +52,3 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__roundtrip.snap index cba6c7229..caddb75ea 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__two-terrainregions__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Region 1 + name: + Utf8: + - Region 1 class: TerrainRegion properties: Attributes: @@ -26,7 +28,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: [] - referent: referent-1 - name: Region 2 + name: + Utf8: + - Region 2 class: TerrainRegion properties: Attributes: @@ -48,4 +52,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: Tags: [] children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__decoded.snap index b50fb72ca..2a14b915a 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Red Union 1 + name: + Utf8: + - Red Union 1 class: UnionOperation properties: Anchored: @@ -144,7 +146,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-1 - name: Red Union 2 + name: + Utf8: + - Red Union 2 class: UnionOperation properties: Anchored: @@ -285,7 +289,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: [] - referent: referent-2 - name: Blue Union + name: + Utf8: + - Blue Union class: UnionOperation properties: Anchored: @@ -425,4 +431,3 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__roundtrip.snap index c93b3b552..94db05bbe 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__unions__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Red Union 1 + name: + Utf8: + - Red Union 1 class: UnionOperation properties: Anchored: @@ -144,7 +146,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-1 - name: Red Union 2 + name: + Utf8: + - Red Union 2 class: UnionOperation properties: Anchored: @@ -285,7 +289,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: [] - referent: referent-2 - name: Blue Union + name: + Utf8: + - Blue Union class: UnionOperation properties: Anchored: @@ -425,4 +431,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__decoded.snap index fa69d4442..bf3cd0ab5 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__decoded.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: - referent: referent-1 - name: A + name: + Utf8: + - A class: Part properties: Anchored: @@ -155,7 +159,9 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 children: - referent: referent-2 - name: WeldConstraint + name: + Utf8: + - WeldConstraint class: WeldConstraint properties: Attributes: @@ -186,7 +192,9 @@ expression: "DomViewer::new().view_children(&decoded)" Tags: [] children: [] - referent: referent-3 - name: B + name: + Utf8: + - B class: Part properties: Anchored: @@ -326,4 +334,3 @@ expression: "DomViewer::new().view_children(&decoded)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__roundtrip.snap index cb6f37bbe..cfb4a564f 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__weldconstraint__roundtrip.snap @@ -3,7 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: Folder + name: + Utf8: + - Folder class: Folder properties: Attributes: @@ -14,7 +16,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: - referent: referent-1 - name: A + name: + Utf8: + - A class: Part properties: Anchored: @@ -155,7 +159,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 children: - referent: referent-2 - name: WeldConstraint + name: + Utf8: + - WeldConstraint class: WeldConstraint properties: Attributes: @@ -186,7 +192,9 @@ expression: "DomViewer::new().view_children(&roundtrip)" Tags: [] children: [] - referent: referent-3 - name: B + name: + Utf8: + - B class: Part properties: Anchored: @@ -326,4 +334,3 @@ expression: "DomViewer::new().view_children(&roundtrip)" - 0 - 0 children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__decoded.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__decoded.snap index 811018f1f..966aeeb3f 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__decoded.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__decoded.snap @@ -3,8 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&decoded)" --- - referent: referent-0 - name: A NumberValue + name: + Utf8: + - A NumberValue class: NumberValue properties: {} children: [] - diff --git a/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__roundtrip.snap b/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__roundtrip.snap index d482445c4..27e14b9a1 100644 --- a/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__roundtrip.snap +++ b/rbx_xml/src/tests/snapshots/rbx_xml__tests__xml-unknown-type__roundtrip.snap @@ -3,8 +3,9 @@ source: rbx_xml/src/tests/mod.rs expression: "DomViewer::new().view_children(&roundtrip)" --- - referent: referent-0 - name: A NumberValue + name: + Utf8: + - A NumberValue class: NumberValue properties: {} children: [] -