Skip to content

Commit 2bdb75c

Browse files
committed
Mark core assemblies
1 parent d4d74ce commit 2bdb75c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

wasm/dotnet/benchmark.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,15 @@ class Benchmark {
9292
name: "System.Private.CoreLib.wasm",
9393
resolvedUrl: dllPrivateCorelibUrl,
9494
buffer: await getBinary(dllPrivateCorelibUrl),
95-
behavior: "assembly"
95+
behavior: "assembly",
96+
isCore: true
9697
},
9798
{
9899
name: "System.Runtime.InteropServices.JavaScript.wasm",
99100
resolvedUrl: dllRuntimeInteropServicesJavaScriptUrl,
100101
buffer: await getBinary(dllRuntimeInteropServicesJavaScriptUrl),
101-
behavior: "assembly"
102+
behavior: "assembly",
103+
isCore: true
102104
},
103105
{
104106
name: "System.Text.Encodings.Web.wasm",
@@ -116,7 +118,8 @@ class Benchmark {
116118
name: "dotnet.wasm",
117119
resolvedUrl: dllAppUrl,
118120
buffer: await getBinary(dllAppUrl),
119-
behavior: "assembly"
121+
behavior: "assembly",
122+
isCore: true
120123
}
121124
]
122125
};

0 commit comments

Comments
 (0)