This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Description
def method
content = File.read 'Dockerfile'
parser = DockerfileParser.new
parser.instance_eval(content)
end
content = and parser = are red in the first two lines, while the same variables are white when used in the last line. That is inconsistent.
Expected: a variable name must keep the same color inside a method.