Update dependencies and fix Lua ref tests

This commit is contained in:
Lucien Greathouse
2021-08-23 15:45:04 -04:00
parent c739025453
commit 16aa354d36
4 changed files with 2027 additions and 274 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -22,7 +22,7 @@ local function findCanonicalPropertyDescriptor(className, propertyName)
local aliasData = propertyData.Kind.Alias
if aliasData ~= nil then
return PropertyDescriptor.fromRaw(
currentClass.properties[aliasData.AliasFor],
currentClass.Properties[aliasData.AliasFor],
currentClassName,
aliasData.AliasFor)
end
@@ -66,4 +66,4 @@ return {
findCanonicalPropertyDescriptor = findCanonicalPropertyDescriptor,
Error = Error,
EncodedValue = require(script.EncodedValue),
}
}

View File

@@ -190,8 +190,7 @@ return function()
Name = "Child",
Properties = {
Value = {
Type = "Ref",
Value = "ROOT",
Ref = "ROOT",
},
},
Children = {},
@@ -218,8 +217,7 @@ return function()
Name = "Root",
Properties = {
Value = {
Type = "Ref",
Value = "EXISTING",
Ref = "EXISTING",
},
},
Children = {},
@@ -257,8 +255,7 @@ return function()
Name = "Child A",
Properties = {
Value = {
Type = "Ref",
Value = "Child B",
Ref = "Child B",
},
},
Children = {},
@@ -297,8 +294,7 @@ return function()
Name = "Root",
Properties = {
Value = {
Type = "Ref",
Value = "CHILD",
Ref = "CHILD",
},
},
Children = {"CHILD"},