We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9edf004 commit b979899Copy full SHA for b979899
src/main/java/com/googlecode/aviator/code/interpreter/InterpretContext.java
@@ -92,13 +92,11 @@ public IR getPc() {
92
return this.pc;
93
}
94
95
- public void push(final AviatorObject... args) {
96
- for (AviatorObject arg : args) {
97
- if (arg == null) {
98
- arg = AviatorNil.NIL;
99
- }
100
- this.operands.push(arg);
+ public void push(AviatorObject arg) {
+ if (arg == null) {
+ arg = AviatorNil.NIL;
101
+ this.operands.push(arg);
102
103
104
public AviatorObject peek() {
0 commit comments