class Tina4::GraphQLParser
def parse_list_value
def parse_list_value expect(:punct, "[") items = [] until current&.value == "]" skip(:comma) break if current&.value == "]" items << parse_value end expect(:punct, "]") items end
def parse_list_value expect(:punct, "[") items = [] until current&.value == "]" skip(:comma) break if current&.value == "]" items << parse_value end expect(:punct, "]") items end