Skip to content

Commit

Permalink
Prep for rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffclick committed Nov 6, 2024
1 parent 5e176be commit ab61d40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions javatools_backend/src/main/java/org/xvm/xtc/ClzBldSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public static void do_compile( ClassPart clz ) {
// Generate Java source. This might trigger more things to compile.
new ClzBuilder(clz.mod(),clz,new SB(),new SB(),true,0).jclass();
assert clz._header!=null;
System.out.print(clz._header);
System.out.print(clz._body);
//System.out.print(clz._header);
//System.out.print(clz._body);
jsrc._src = clz._header.toString() + clz._body.toString();
}
// Compile and load the Java classes as a complete set
Expand All @@ -54,7 +54,7 @@ static void add( ClassPart clz ) {
// Filters for dups globally.
public static void add( String name, String body ) {
if( find(name) ) return; // Already done or in-progress
System.out.print(body);
//System.out.print(body);
SRCS.add(new JavaC.JavaSrc(name,body));
}

Expand Down
2 changes: 1 addition & 1 deletion tck/src/main/x/tck/clazz/Medium.x
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Medium {
xincorp();
incorp();
ic();
//typevars();
typevars();
//annot();
}

Expand Down

0 comments on commit ab61d40

Please sign in to comment.