mirror of
https://github.com/franalgaba/grimoire.git
synced 2026-09-14 20:26:31 +08:00
001b16258c
* migrate .spell DSL from indentation to brace-delimited syntax (SPEC-001)
Replace Python-style 2-space indentation with Rust/Go curly-brace
blocks across the entire codebase. This is a breaking syntax change
that improves agent authorship — LLMs handle braces far better than
whitespace-significant formats.
Tokenizer: remove INDENT/DEDENT tokens, split bracketDepth into
parenDepth (suppresses newlines) and braceDepth (preserves newlines),
remove IndentationError.
Parser: replace all INDENT/DEDENT patterns with LBRACE/RBRACE across
~22 methods. New parseBraceBlock() helper replaces parseStatementBlock().
Two patterns: label blocks (label: { }) and keyword blocks (keyword { }).
AST, transformer, IR generator, and runtime are unchanged — indentation
was purely a lexical/parse concern.
Updated 86 .spell fixture files, 15 test files, 20 documentation files,
README, AGENTS.md, VM spec references, and compiler-pipeline docs.
620 tests pass, 0 fail.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add changeset
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
443 B
Plaintext
26 lines
443 B
Plaintext
# Test: Multiple triggers — hourly and daily handlers
|
|
|
|
spell TestMultiTrigger {
|
|
|
|
version: "1.0.0"
|
|
description: "Spell with multiple trigger handlers"
|
|
assets: []
|
|
|
|
state: {
|
|
persistent: {
|
|
hourly_count: 0
|
|
daily_count: 0
|
|
|
|
}
|
|
}
|
|
on hourly: {
|
|
hourly_count = hourly_count + 1
|
|
emit hourly_tick(count=hourly_count)
|
|
|
|
}
|
|
on daily: {
|
|
daily_count = daily_count + 1
|
|
emit daily_tick(count=daily_count)
|
|
|
|
}
|
|
} |