Class: WebIDL::Ast::Operation

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

Instance Attribute Summary collapse

Attributes inherited from Node

#parent

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
16
17
# File 'lib/webidl/ast/operation.rb', line 8

def initialize(parent, type, opts = {})
  @parent              = parent
  @type                = type
  @name                = opts[:name]                || ''
  @static              = opts[:static]
  @specials            = opts[:specials]            || []
  @args                = opts[:args]                || []
  @raises              = opts[:raises]              || []
  @extended_attributes = opts[:extended_attributes] || []
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

#extended_attributesObject

Returns the value of attribute extended_attributes.



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

def extended_attributes
  @extended_attributes
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

#creator?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/webidl/ast/operation.rb', line 31

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

#deleter?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/webidl/ast/operation.rb', line 35

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

#getter?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/webidl/ast/operation.rb', line 23

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

#legacycaller?Boolean

Returns:

  • (Boolean)


39
40
41
# File 'lib/webidl/ast/operation.rb', line 39

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

#setter?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/webidl/ast/operation.rb', line 27

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

#static?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/webidl/ast/operation.rb', line 43

def static?
  !!@static
end

#stringifier?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/webidl/ast/operation.rb', line 19

def stringifier?
  !!@stringifier
end