Skip to content

Commit 6766da8

Browse files
authored
Merge pull request #43 from BobHanson/yadav1
Yadav1
2 parents a28b00a + 3b53d20 commit 6766da8

File tree

21 files changed

+516
-347
lines changed

21 files changed

+516
-347
lines changed

sources/net.sf.j2s.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,4 @@ Require-Bundle: org.eclipse.core.runtime,
99
org.eclipse.jdt.core,
1010
org.eclipse.core.resources
1111
Eclipse-AutoStart: true
12-
Export-Package: net.sf.j2s.core.astvisitors,
13-
net.sf.j2s.core.compiler,
14-
net.sf.j2s.core
12+
Export-Package: net.sf.j2s.core

sources/net.sf.j2s.core/dist/README.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@ SwingJS distribution
22

33
https://github.com/BobHanson/java2script/blob/master/sources/net.sf.j2s.core/dist/dropins/README.txt
44

5+
8/6/2018 Bob Hanson hansonr@stolaf.edu
6+
7+
Java2Script 3.2.2.03 introduces and checks more Java 8 capabilities.
8+
Use
9+
10+
eclipsec -clean
11+
12+
to update to new versions of the transpiler. Otherwise although the transpiler is updated, it will
13+
report out an incorrect version number. This can be checked on the last line of every JS file created:
14+
15+
Clazz.setTVer('3.2.2.03');//Created 2018-08-06 17:25:47 Java2ScriptVisitor version 3.2.2.03 net.sf.j2s.core.jar version 3.2.2.03
16+
17+
518
7/20/2018 Bob Hanson hansonr@stolaf.edu
619

720
The base Java version is Java 6. However, many of the functionalities of Java 7 and Java 8 are included.
-1.07 MB
Binary file not shown.
161 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180805231348
1+
20180806180213
-1.07 MB
Binary file not shown.
161 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20180805231348
1+
20180806180213

sources/net.sf.j2s.core/plugin.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
<extension
66
point="org.eclipse.jdt.core.compilationParticipant">
77
<compilationParticipant
8-
class="net.sf.j2s.core.compiler.Java2ScriptCompilationParticipant"
8+
class="net.sf.j2s.core.Java2ScriptCompilationParticipant"
99
createsProblems="false"
1010
id="Java2Script CompilationParticipant"
1111
modifiesEnvironment="false"
1212
requiredSourceLevel="1.6">
1313
</compilationParticipant>
1414
</extension>
1515

16-
<!-- 3.2.1 now does not use a special builder. This is just for legacy code -->
1716

1817
</plugin>

sources/net.sf.j2s.core/src/net/sf/j2s/core/CorePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class CorePlugin extends Plugin {
1919
* register the bundle version properly. So we use VERSION here instead.
2020
*
2121
*/
22-
public static String VERSION = "3.2.2.02";
22+
public static String VERSION = "3.2.2.03";
2323

2424
/**
2525
* The constructor.

0 commit comments

Comments
 (0)