chalk/src/chalk/builtin.cr

22 lines
324 B
Crystal

module Chalk
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