Skip to content

Commit be998c3

Browse files
authored
Allow different parsing strategies (#4205)
* modifiers * modifiers and function * revert * .
1 parent 39fb44f commit be998c3

File tree

3 files changed

+266
-266
lines changed

3 files changed

+266
-266
lines changed

src/api/java/ASTVector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ public String toString() {
9191
return Native.astVectorToString(getContext().nCtx(), getNativeObject());
9292
}
9393

94-
ASTVector(Context ctx, long obj)
94+
public ASTVector(Context ctx, long obj)
9595
{
9696
super(ctx, obj);
9797
}
9898

99-
ASTVector(Context ctx)
99+
public ASTVector(Context ctx)
100100
{
101101
super(ctx, Native.mkAstVector(ctx.nCtx()));
102102
}

0 commit comments

Comments
 (0)