aboutsummaryrefslogtreecommitdiffstats
path: root/main/core/tokenizer/token/ArgumentInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/core/tokenizer/token/ArgumentInfo.java')
-rw-r--r--main/core/tokenizer/token/ArgumentInfo.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/main/core/tokenizer/token/ArgumentInfo.java b/main/core/tokenizer/token/ArgumentInfo.java
deleted file mode 100644
index b062a04..0000000
--- a/main/core/tokenizer/token/ArgumentInfo.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.jantuomi.interpreter.main.core.tokenizer.token;
-
-/**
- * Created by jan on 15.6.2016.
- */
-public class ArgumentInfo {
- private int count = 0;
- private boolean isVarargs = false;
-
- public Token.Type getOptionalArgument() {
- return optionalArgument;
- }
-
- public void setOptionalArgument(Token.Type optionalArgument) {
- this.optionalArgument = optionalArgument;
- }
-
- private Token.Type optionalArgument = null;
-
- public Token.Type getTerminator() {
- return terminator;
- }
-
- public void setTerminator(Token.Type terminator) {
- this.terminator = terminator;
- }
-
- private Token.Type terminator;
-
- public ArgumentInfo(int count) {
- this.count = count;
- }
-
- public ArgumentInfo() {
-
- }
-
- public void setVariable(boolean value) {
- this.isVarargs = value;
- }
-
- public boolean getVarargs() {
- return isVarargs;
- }
-
- public int getCount() {
- return count;
- }
-}