🎁 feat: pack構文革命完全達成 - Box哲学の具現化

【実装内容】
- packキーワード追加: TokenType::PACK, "pack" mapping
- パーサー対応: init同様の特別扱い + from Parent.pack()
- インタープリター対応: pack > init > Box名順優先選択
- デリゲーション統合: from Parent.pack()で親packを呼び出し
- テスト完備: test_pack_syntax.nyash包括テスト

【革命的効果】
- Box哲学具現化: 「箱に詰める」でコードを書くたび哲学体験
- 他言語差別化: new/init超越のNyash独自アイデンティティ
- 直感的UX: Gemini・ChatGPT両先生一致推薦の最適命名
- メンタルモデル統一: 全Boxで1つのpack動詞に収束
- 拡張基盤: try_pack, from_*パターンへの発展準備完了

🎉 Everything is Box - Now Everything is Packed\!

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Moe Charm
2025-08-11 09:40:24 +09:00
parent e3d4b3cbd5
commit 50fc4ca1ce
7 changed files with 366 additions and 40 deletions

108
test_pack_syntax.nyash Normal file
View File

@ -0,0 +1,108 @@
// 🎁 pack構文の包括的テスト
// 1. 基本的なpack構文
box Animal {
init { name, age }
pack(animalName, animalAge) {
me.name = animalName
me.age = animalAge
}
speak() {
return me.name + " (age " + me.age + ") makes a sound"
}
}
// 2. fromデリゲーションでのpack
box Dog from Animal {
init { breed }
pack(dogName, dogAge, dogBreed) {
from Animal.pack(dogName, dogAge) // 親のpackを呼び出し
me.breed = dogBreed
}
override speak() {
return me.name + " (age " + me.age + ", " + me.breed + ") barks: Woof!"
}
}
// 3. 混在形式packと従来形式の共存
box Cat from Animal {
init { color }
Cat(catName, catAge, catColor) { // 従来形式
from Animal.pack(catName, catAge) // 親はpack使用
me.color = catColor
}
override speak() {
return me.name + " (age " + me.age + ", " + me.color + ") meows: Meow!"
}
}
// 4. pack単独使用テスト
box Bird {
init { species, canFly }
// pack単独 - Box哲学に最適
pack(birdSpecies, flying) {
me.species = birdSpecies + " (pack使用)"
me.canFly = flying
}
describe() {
local flyText
if me.canFly {
flyText = "can fly"
} else {
flyText = "cannot fly"
}
return me.species + " - " + flyText
}
}
// テスト実行
print("=== 🎁 pack構文テスト ===")
// 1. 基本的なpack
local animal
animal = new Animal("Generic", 5)
print("Animal: " + animal.speak())
// 2. デリゲーションでのpack
local dog
dog = new Dog("Buddy", 3, "Golden Retriever")
print("Dog: " + dog.speak())
// 3. 混在形式
local cat
cat = new Cat("Whiskers", 2, "Black")
print("Cat: " + cat.speak())
// 4. pack単独使用確認
local bird
bird = new Bird("Eagle", true)
print("Bird: " + bird.describe())
// 5. 引数なしpack
box SimpleBox {
init { message }
pack() { // 引数なしpack
me.message = "Packed with love! 🎁"
}
getMessage() {
return me.message
}
}
local simple
simple = new SimpleBox()
print("SimpleBox: " + simple.getMessage())
print("")
print("✅ pack構文テスト完了")
print("🎉 Everything is Box - Now Everything is Packed!")