Add the AST a to the back of the vector. The size is increased by 1. @param a An AST
(AST a)
| 68 | * @param a An AST |
| 69 | **/ |
| 70 | public void push(AST a) |
| 71 | { |
| 72 | Native.astVectorPush(getContext().nCtx(), getNativeObject(), a.getNativeObject()); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Translates all ASTs in the vector to {@code ctx}. |
no test coverage detected