Use tuple instead of an array

This commit is contained in:
Sijawusz Pur Rahnama 2022-11-23 03:23:42 +01:00
parent 8b43a40a65
commit 2c67fe2c3f
3 changed files with 6 additions and 6 deletions

View file

@ -241,7 +241,7 @@ module Ameba
end
class TestNodeVisitor < Crystal::Visitor
NODES = [
NODES = {
Crystal::NilLiteral,
Crystal::Var,
Crystal::Assign,
@ -255,7 +255,7 @@ module Ameba
Crystal::MacroLiteral,
Crystal::Expressions,
Crystal::ControlExpression,
]
}
def initialize(node)
node.accept self