Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Fix members being exponentially overpopulated leading to perf issues (#7
Browse files Browse the repository at this point in the history
)
  • Loading branch information
claylittlehorse authored Aug 14, 2024
1 parent 96bfcd9 commit c058450
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
An easy to use and functional interface for processing and
accessing Roblox API dump data.
]=]
local T = require(script["init.d"])
local NONE = require(script.Util.None)
local T = require(script["init.d"])

local FetchDump = require(script.FetchDump)
local Array = require(script.Util.Array)
local Filter = require(script.Filter)
local Class = require(script.Class)
local FetchDump = require(script.FetchDump)
local Filter = require(script.Filter)

local Dump = {}

Expand Down Expand Up @@ -184,7 +184,7 @@ end
function Dump:constructRawClass(class: T.Class): T.ClassWithInheritance
local finalDescendant = class

local memberAncestry = finalDescendant.Members
local memberAncestry = table.clone(finalDescendant.Members)
local nextAncestorClassName = finalDescendant.Superclass
local ancestorNames = {}

Expand Down

0 comments on commit c058450

Please sign in to comment.