File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/npm-packages/ruby-wasm-wasi/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,13 +113,13 @@ export class RubyVM {
113
113
return value ;
114
114
} ,
115
115
procToJsFunction : ( rawRbAbiValue ) => {
116
- const rbValue = this . rbValueofPointer ( rawRbAbiValue ) ;
116
+ const rbValue = this . rbValueOfPointer ( rawRbAbiValue ) ;
117
117
return ( ...args ) => {
118
118
rbValue . call ( "call" , ...args . map ( ( arg ) => this . wrap ( arg ) ) ) ;
119
119
} ;
120
120
} ,
121
121
rbObjectToJsRbValue : ( rawRbAbiValue ) => {
122
- return this . rbValueofPointer ( rawRbAbiValue ) ;
122
+ return this . rbValueOfPointer ( rawRbAbiValue ) ;
123
123
} ,
124
124
jsValueToString : ( value ) => {
125
125
// According to the [spec](https://tc39.es/ecma262/multipage/text-processing.html#sec-string-constructor-string-value)
@@ -288,7 +288,7 @@ export class RubyVM {
288
288
} ;
289
289
}
290
290
291
- private rbValueofPointer ( pointer : number ) : RbValue {
291
+ private rbValueOfPointer ( pointer : number ) : RbValue {
292
292
const abiValue = new ( RbAbi . RbAbiValue as any ) ( pointer , this . guest ) ;
293
293
return new RbValue ( abiValue , this , this . privateObject ( ) ) ;
294
294
}
You can’t perform that action at this time.
0 commit comments