class SFRP::Raw::FuncTypeAnnotation

Public Instance Methods

to_flat(set, ns) click to toggle source
# File lib/sfrp/raw/elements.rb, line 144
def to_flat(set, ns)
  flat_arg_tas = arg_tas.map { |ta| ta.to_flat(set, ns) }
  Flat::FuncTypeAnnotation.new(ret_ta.to_flat(set, ns), flat_arg_tas)
end