luau/bench/micro_tests/test_OOP_virtual_constructor.lua
Vyacheslav Egorov aafea36235
Fixed the backwards compatible benchmark support library require (#1125)
Previous benchmark require fix wasn't actually working correctly for the
old style require (or running in Lua).
2023-12-04 12:48:31 -08:00

30 lines
713 B
Lua

local function prequire(name) local success, result = pcall(require, name); return if success then result else nil end
local bench = script and require(script.Parent.bench_support) or prequire("bench_support") or require("../bench_support")
function test()
local Number = {}
Number.__index = Number
function Number:new(class, v)
local self = {
value = v
}
setmetatable(self, Number)
return self
end
function Number:Get()
return self.value
end
local ts0 = os.clock()
for i=1,100000 do
local n = Number:new(42)
end
local ts1 = os.clock()
return ts1-ts0
end
bench.runCode(test, "OOP: virtual constructor")