chalk/src/chalk/builtin.cr

24 lines
375 B
Crystal

module Chalk
module Builtin
class BuiltinFunction
getter param_count : Int32
def initialize(@param_count)
end
def generate!(codegen)
end
end
class InlineFunction
getter param_count : Int32
def initialize(@param_count)
end
def generate!(codegen, params, table, target, free)
end
end
end
end