1 2 3 4 5 6 7 8 9 10 11 12 13
js.execute.ignore=true Whiley2JavaScript.issue=29 ====== >>> main.whiley import other private final int C1 = 123 public export method test(): assume other::C2 == 124 >>> other.whiley import main private final int C2 = main::C1 + 1 ---