class VueCompiler::Node::Directive

Attributes

argument[R]
name[R]
shorthand[R]

Public Class Methods

new(name, argument, shorthand = false) click to toggle source
# File lib/vue_component_compiler/node.rb, line 66
def initialize(name, argument, shorthand = false)
  @name = name
  @argument = argument
  @shorthand = shorthand
end