File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const Container = styled.section`
11
11
grid-template-columns: 1fr 4fr;
12
12
width: 100vw;
13
13
height: 100vh;
14
- background-color: #f4f5f7 ;
14
+ background-color: #edf2f7 ;
15
15
overflow: hidden;
16
16
` ;
17
17
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const GlobalStyle = createGlobalStyle`
5
5
margin: 0;
6
6
padding: 0;
7
7
color: #333333;
8
- background-color: #f5f6f7 ;
8
+ background-color: #edf2f7 ;
9
9
}
10
10
11
11
* {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
11
11
} from "./consts/constants.ts" ;
12
12
import { unzip } from "fflate" ;
13
13
14
- const MAIN_CLASS_NAME = "Arrays " ;
14
+ const MAIN_CLASS_NAME = "Instance " ;
15
15
const MAIN_CLASS = `java/${ MAIN_CLASS_NAME } .class` ;
16
16
const DEBUG = true ;
17
17
@@ -36,9 +36,8 @@ const debug = (text: string, ...args: any[]) => {
36
36
if ( DEBUG ) {
37
37
const date = new Date ( ) ;
38
38
console . debug ( `%c[${ date . toLocaleString ( ) } ] [TS] ${ text } ` , "color: white; background-color: #cc7722;" , ...args ) ;
39
+ // dispatchEvent<ConsoleEvent>(EVENT_CONSOLE_STDOUT, {text: '[DEBUG/TS] ' + text + '\n'});
39
40
}
40
-
41
- dispatchEvent < ConsoleEvent > ( EVENT_CONSOLE_STDOUT , { text : '[DEBUG/TS] ' + text + '\n' } ) ;
42
41
}
43
42
44
43
const fetchAsUint8Array = async ( path : string ) : Promise < Uint8Array > => {
@@ -104,6 +103,7 @@ const launchBJVM = async () => {
104
103
* @param className
105
104
*/
106
105
const get_class = ( className : string ) => {
106
+ console . log ( classes [ className ] ) ;
107
107
return classes [ className ] ?? [ ] ;
108
108
}
109
109
( window as any ) . get_class = get_class ;
You can’t perform that action at this time.
0 commit comments