Method: SyntaxTree::Backtick#initialize

Defined in:
lib/syntax_tree.rb

#initialize(value:, location:, comments: []) ⇒ Backtick

Returns a new instance of Backtick.



2085
2086
2087
2088
2089
# File 'lib/syntax_tree.rb', line 2085

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end