Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/yanghuan/CSharp.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
yanghuan committed May 5, 2019
2 parents 4ff551b + b0c0afe commit 6fe2c71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CSharp.lua/CoreSystem.Lua/CoreSystem/Reflection/Assembly.lua
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ local FieldInfo = define("System.Reflection.FieldInfo", {
if type(metadata[index]) == "string" then
index = 5
end
return fillMetadataCustomAttributes(t, metadata, index, attributeType)
fillMetadataCustomAttributes(t, metadata, index, attributeType)
end
return arrayFromTable(t, System.Attribute)
end
Expand Down Expand Up @@ -353,7 +353,7 @@ local PropertyInfo = define("System.Reflection.PropertyInfo", {
local metadata = this.metadata
if metadata then
local index = getPropertyAttributesIndex(metadata)
return fillMetadataCustomAttributes(t, metadata, index, attributeType)
fillMetadataCustomAttributes(t, metadata, index, attributeType)
end
return arrayFromTable(t, System.Attribute)
end
Expand Down Expand Up @@ -467,7 +467,7 @@ local MethodInfo = define("System.Reflection.MethodInfo", {
local metadata = this.metadata
if metadata then
local index = getMethodAttributesIndex(metadata)
return fillMetadataCustomAttributes(t, metadata, index, attributeType)
fillMetadataCustomAttributes(t, metadata, index, attributeType)
end
return arrayFromTable(t, System.Attribute)
end
Expand Down

0 comments on commit 6fe2c71

Please sign in to comment.