mirror of
https://github.com/konsoletyper/teavm.git
synced 2025-02-17 11:19:48 +08:00
Emit boolean constants as numbers
This commit is contained in:
parent
c246bb6e1e
commit
1200354a7b
@ -155,6 +155,8 @@ public class RenderingContext {
|
||||
}
|
||||
} else if (cst instanceof Character) {
|
||||
return Integer.toString((Character) cst);
|
||||
} else if (cst instanceof Boolean) {
|
||||
return (Boolean) cst ? "1" : "0";
|
||||
} else {
|
||||
return cst.toString();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user