class Aries::ParamType

Constants

ALLOWED_TYPES

Public Class Methods

new(type, parent = nil) click to toggle source
# File lib/aries/param_type.rb, line 7
def initialize type, parent = nil
  @type = type
  @parent = parent
end

Public Instance Methods

type() click to toggle source
# File lib/aries/param_type.rb, line 12
def type
  @type
end