Class: WebIDL::Ast::Operation

Inherits:
Node
  • Object
show all
Defined in:
lib/webidl/ast/operation.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#accept, #qualified_name, #snake_name

Constructor Details

#initialize(parent, type, opts = {}) ⇒ Operation

Returns a new instance of Operation.



8
9
10
11
12
13
14
15
# File 'lib/webidl/ast/operation.rb', line 8

def initialize(parent, type, opts = {})
  @parent   = parent
  @type     = type
  @name     = opts[:name]     || ''
  @specials = opts[:specials] || []
  @args     = opts[:args]     || []
  @raises   = opts[:raises]   || []
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



5
6
7
# File 'lib/webidl/ast/operation.rb', line 5

def args
  @args
end

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/webidl/ast/operation.rb', line 5

def name
  @name
end

#raisesObject (readonly)

Returns the value of attribute raises.



5
6
7
# File 'lib/webidl/ast/operation.rb', line 5

def raises
  @raises
end

#specialsObject (readonly)

Returns the value of attribute specials.



5
6
7
# File 'lib/webidl/ast/operation.rb', line 5

def specials
  @specials
end

#stringifierObject

Returns the value of attribute stringifier.



6
7
8
# File 'lib/webidl/ast/operation.rb', line 6

def stringifier
  @stringifier
end

#typeObject (readonly)

Returns the value of attribute type.



5
6
7
# File 'lib/webidl/ast/operation.rb', line 5

def type
  @type
end

Instance Method Details

#caller?Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/webidl/ast/operation.rb', line 37

def caller?
  @specials.include? 'caller'
end

#creator?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/webidl/ast/operation.rb', line 29

def creator?
  @specials.include? 'creator'
end

#deleter?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/webidl/ast/operation.rb', line 33

def deleter?
  @specials.include? 'deleter'
end

#getter?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/webidl/ast/operation.rb', line 21

def getter?
  @specials.include? 'getter'
end

#setter?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/webidl/ast/operation.rb', line 25

def setter?
  @specials.include? 'setter'
end

#stringifier?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/webidl/ast/operation.rb', line 17

def stringifier?
  !!@stringifier
end