File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 18
18
- Compiler: rename CField.fieldType to type
19
19
- Compiler: rename MethodDef.ret to returns
20
20
- Compiler: rename FuncType.ret to returns
21
+ - Default default WebJsMode to es
21
22
- Add File.withIn and File.withOut
22
23
- Add StrBuf.joinNotNull
23
24
- Add Win.devicePixelRatio
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Fantom transpiles to Java using the following conventions
25
25
- Any type/slot name with "$" is synthetic and should not be used
26
26
- Const fields are compiled into a Java getter method
27
27
- Mutable fields are compiled into a Java getter and setter method
28
- - Contructors are compiled into static factory methods (never use
28
+ - Constructors are compiled into static factory methods (never use
29
29
the Java constructors directly)
30
30
- Mixins are compiled to Java interfaces and will make use
31
31
of Java default methods (note Java interfaces do not support
Original file line number Diff line number Diff line change @@ -34,5 +34,6 @@ using concurrent
34
34
static Void setCur(WebJsMode cur) { curRef.val = cur }
35
35
36
36
** Global variable
37
- private static const AtomicRef curRef := AtomicRef(WebJsMode.js)
38
- }
37
+ private static const AtomicRef curRef := AtomicRef(WebJsMode.es)
38
+ }
39
+
You can’t perform that action at this time.
0 commit comments