tekknolagi / scrapscript

A functional, content-addressable programming language.
https://scrapscript.fly.dev/repl
Other
170 stars 4 forks source link

Deferred code generation #172

Open tekknolagi opened 3 days ago

tekknolagi commented 3 days ago

Hoist some metadata about objects (types, values for consts, etc) into the code generator. Can probably have:

class CompTimeObject: pass

class CompTimeInt(CompTimeObject): pass

class CCode(CompTimeObject): pass

and pass that around the compile function instead of just strings.

tekknolagi commented 3 days ago

Could even make the guard functions const-fold opportunistically