#1 Implement a new language construct: `macro`

已关闭
Archivist4 天前创建 · 0 条评论
Archivist 评论于 4 天前

The macro language constructs operates like a compile time function. The code is executed during the compilation phase, and then it is made into a function that outputs the remaining stack left behind by the routine that executed the macro.

Syntax

let cnt a function that returns a single integer, from the sequence {1, 2, 3, 4, 5, 6, 7, 8, 9, 10...} in order with each call. cnt has not been called.

macro my-macro do
	cnt cnt + cnt cnt + +
end
usage:
my-macro print_int 20 print_utf8 my-macro print_int 20 print_utf8
expected output:
10
10


usage:
cnt drop my-macro print_int cnt drop cnt drop 20 print_utf8 my-macro print_int 20 print_utf8
expected output:
10
10

Proposed way of implementation

The implementation could be performed as a normal function that just outputs to stack the stored value. This depends on the system to preserve function contents during GC #2.

The `macro` language constructs operates like a compile time function. The code is executed during the compilation phase, and then it is made into a function that outputs the remaining stack left behind by the routine that executed the macro. ## Syntax let `cnt` a function that returns a single integer, from the sequence {1, 2, 3, 4, 5, 6, 7, 8, 9, 10...} in order with each call. cnt has not been called. ``` macro my-macro do cnt cnt + cnt cnt + + end ``` ###### usage: ``` my-macro print_int 20 print_utf8 my-macro print_int 20 print_utf8 ``` ###### expected output: ``` 10 10 ``` -------------- ###### usage: ``` cnt drop my-macro print_int cnt drop cnt drop 20 print_utf8 my-macro print_int 20 print_utf8 ``` ###### expected output: ``` 10 10 ``` ## Proposed way of implementation The implementation could be performed as a normal function that just outputs to stack the stored value. This depends on the system to preserve function contents during GC #2.
Archivist 添加了标签
enhancement
4 天前
Archivist4 天前 指派给自己
Archivist 关闭这个问题 4 小时前
登录 并参与到对话中。
未选择里程碑
未指派成员
1 名参与者
通知
到期时间

未设置到期时间。

依赖工单

此工单当前没有任何依赖。

正在加载...
这个人很懒,什么都没留下。