File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
NativeScript/runtime/modules/worker Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 44// Created by Eduardo Speroni on 11/22/23.
55// Copyright © 2023 Progress. All rights reserved.
66
7- // #ifndef TARGET_ENGINE_V8
7+ #ifndef TARGET_ENGINE_V8
88
99#include " js_native_api.h"
1010#include " MessageJSON.h"
@@ -270,4 +270,4 @@ Message::Message(MallocedBuffer<char>&& payload)
270270}; // namespace worker
271271}; // namespace nativescript
272272
273- // #endif // TARGET_ENGINE_V8
273+ #endif // TARGET_ENGINE_V8
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ BUILD_MACOS=$(to_bool ${BUILD_MACOS:=false}) # disable by default for now
3131VERBOSE=$( to_bool ${VERBOSE:= false} )
3232BUILD_MACOS_CLI=$( to_bool ${BUILD_MACOS_CLI:= false} )
3333EMBED_METADATA=$( to_bool ${EMBED_METADATA:= false} )
34- CONFIG_BUILD=Debug
34+ CONFIG_BUILD=RelWithDebInfo
3535CONFIG_SIMPLE=Debug
3636
3737ANY_FRAMEWORK=$( to_bool ${ANY_FRAMEWORK:= false} )
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ console.log("Hello from Worker!");
33globalThis . onmessage = ( e ) => {
44 console . log ( "Worker received message:" , e . data ) ;
55 const sab = e . data ;
6- console . log ( "Worker sab:" , sab . length ) ;
76 const view = new Int32Array ( sab ) ;
87 console . log ( "Worker view[0]:" , view [ 0 ] ) ;
98 view [ 0 ] = 100 ;
You can’t perform that action at this time.
0 commit comments