We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bb0694 commit 8c7f71eCopy full SHA for 8c7f71e
IntegrationTests/TestSuites/Sources/BenchmarkTests/main.swift
@@ -83,3 +83,11 @@ objectHeap.testSuite("Increment and decrement RC") { n in
83
_ = global.objectHeapDummy
84
}
85
86
+
87
+let propertyAccess = Benchmark("Property access")
88
89
+propertyAccess.testSuite("Dynamic member lookup") { n in
90
+ for _ in 0 ..< n {
91
+ _ = global.jsNumber
92
+ }
93
+}
0 commit comments