File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -92,13 +92,15 @@ class Benchmark {
92
92
name : "System.Private.CoreLib.wasm" ,
93
93
resolvedUrl : dllPrivateCorelibUrl ,
94
94
buffer : await getBinary ( dllPrivateCorelibUrl ) ,
95
- behavior : "assembly"
95
+ behavior : "assembly" ,
96
+ isCore : true
96
97
} ,
97
98
{
98
99
name : "System.Runtime.InteropServices.JavaScript.wasm" ,
99
100
resolvedUrl : dllRuntimeInteropServicesJavaScriptUrl ,
100
101
buffer : await getBinary ( dllRuntimeInteropServicesJavaScriptUrl ) ,
101
- behavior : "assembly"
102
+ behavior : "assembly" ,
103
+ isCore : true
102
104
} ,
103
105
{
104
106
name : "System.Text.Encodings.Web.wasm" ,
@@ -116,7 +118,8 @@ class Benchmark {
116
118
name : "dotnet.wasm" ,
117
119
resolvedUrl : dllAppUrl ,
118
120
buffer : await getBinary ( dllAppUrl ) ,
119
- behavior : "assembly"
121
+ behavior : "assembly" ,
122
+ isCore : true
120
123
}
121
124
]
122
125
} ;
You can’t perform that action at this time.
0 commit comments