public MethodDeclNode(TypeNode typeNode, IdentifierNode identifierNode, ParamDeclListNode paramListNode, VariableDeclListNode variableListNode, StatementListNode statementListNode, int lineNumber) { this.methodType = typeNode; this.methodName = identifierNode; this.paramDeclList = paramListNode; this.variableDeclList = variableListNode; this.statementList = statementListNode; this.lineNumber = lineNumber; }