Differences From Artifact [22543b9ce7]:
- File tool/class-compile.janet — part of check-in [91e02e35d5] at 2025-02-21 22:02:29 on branch trunk — add janet API bootstrapping infra (prim, core), begin building executor (vm.c), design class model, continue working on loading, add script instances, tidy up src organization, build janet to use godot malloc/free (user: lexi, size: 32341) [annotate] [blame] [check-ins using]
To Artifact [495ac069e8]:
- File tool/class-compile.janet — part of check-in [c0fd81ac3d] at 2025-02-28 00:10:28 on branch trunk — continue iterating on object model (user: lexi, size: 32339) [annotate] [blame] [check-ins using]
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 |
(let [uf (unit-files unit)] (:write stdout (case emit "header" (lines->str (uf :header)) "loader" (lines->str (uf :impl)) (error :bad-cmd))))) (defn main [& argv] (entry ;argv)) # (try (entry ;argv) # ([e] (:write stderr (style ;(err->msg e)) "\n")))) |
| | | |
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 |
(let [uf (unit-files unit)]
(:write stdout (case emit
"header" (lines->str (uf :header))
"loader" (lines->str (uf :impl))
(error :bad-cmd)))))
(defn main [& argv]
# (entry ;argv))
(try (entry ;argv)
([e] (:write stderr (style ;(err->msg e)) "\n"))))
|