class Phlex::Compiler::Nodes::MethodAddBlock

def method_call

def method_call
	@method_call ||= case @node.call
	in SyntaxTree::FCall
		Phlex::Compiler::Nodes::FCall.new(@node.call)
	in SyntaxTree::Command
		Phlex::Compiler::Nodes::Command.new(@node.call)
	in SyntaxTree::Call
		Phlex::Compiler::Nodes::Call.new(@node.call)
	end
end