module Babl::Operators::Typed::DSL

Public Instance Methods

boolean() click to toggle source
# File lib/babl/operators/typed.rb, line 20
def boolean
    construct_terminal { Nodes::Typed::Boolean.instance }
end
integer() click to toggle source
# File lib/babl/operators/typed.rb, line 8
def integer
    construct_terminal { Nodes::Typed::Integer.instance }
end
number() click to toggle source
# File lib/babl/operators/typed.rb, line 12
def number
    construct_terminal { Nodes::Typed::Number.instance }
end
string() click to toggle source
# File lib/babl/operators/typed.rb, line 16
def string
    construct_terminal { Nodes::Typed::String.instance }
end