lean-ja / lean-ja/lean-by-example

command_elab 属性、あるいは elab コマンドの舞台裏

Open
#682 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

メタプログラミング 宣言的コマンド 属性
Dominant language
Lean
Stars
188
Forks
15
Avg merge
9h 8m
Merged PRs (30d)
6

Description

import Lean

/- Elaboration の流れに沿いつつ、コマンドを自作する例
Lean のユーザは `command_elab` 属性を使ったりする必要はない(ほとんど常に `elab` コマンドと `elab_rules` コマンドで十分)
だが、裏ではこういうことをしている。
-/

open Lean Elab Command Term Meta

-- 1. 構文の定義
syntax (name := mycommand1) "#mycommand1" : command -- declare the syntax

-- 2. エラボレータを定義する
def mycommand1Impl : CommandElab := fun stx => do -- declare and register the elaborator
  logInfo "Hello World"

-- 3. 定義したエラボレータを、特定の構文を扱うものとして登録する
attribute [command_elab mycommand1] mycommand1Impl

#mycommand1 -- Hello World

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reviewing the Japanese issue body and its embedded Lean example about the command_elab attribute and elab commands. The payload does not name a target file, test, or explicit completion criterion, so confirm where this documentation belongs and what form the finished addition should take.

Written by the indexing model from the issue text.

Assessment

Domain
documentation
Issue type
Documentation
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.