Skip to content

Commit

Permalink
Allow different parsing strategies (#4205)
Browse files Browse the repository at this point in the history
* modifiers

* modifiers and function

* revert

* .
  • Loading branch information
i-walker committed May 4, 2020
1 parent 39fb44f commit be998c3
Show file tree
Hide file tree
Showing 3 changed files with 266 additions and 266 deletions.
4 changes: 2 additions & 2 deletions src/api/java/ASTVector.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ public String toString() {
return Native.astVectorToString(getContext().nCtx(), getNativeObject());
}

ASTVector(Context ctx, long obj)
public ASTVector(Context ctx, long obj)
{
super(ctx, obj);
}

ASTVector(Context ctx)
public ASTVector(Context ctx)
{
super(ctx, Native.mkAstVector(ctx.nCtx()));
}
Expand Down
Loading

0 comments on commit be998c3

Please sign in to comment.