Files
storybook/tests/examples/validation_errors.sb

55 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

// Test semantic validation errors
// Valid bond values (should parse and validate)
relationship GoodFriendship {
Alice
Bob
bond: 0.8
}
// Invalid bond value - too high (should validate with error)
// relationship BadFriendship1 {
// Carol
// David
// bond: 1.5 // Error: bond > 1.0
// }
// Invalid bond value - negative (should validate with error)
// relationship BadFriendship2 {
// Elena
// Frank
// bond: -0.1 // Error: bond < 0.0
// }
// Valid age
character YoungPerson {
age: 25
}
// Invalid age - negative (commented to allow file to parse)
// character InvalidPerson1 {
// age: -5 // Error: age < 0
// }
// Invalid age - too high (commented to allow file to parse)
// character InvalidPerson2 {
// age: 200 // Error: age > 150
// }
// Valid life arc with proper transitions
life_arc ValidLifeArc {
state start {
on ready -> end
}
state end {
// Terminal state
}
}
// Invalid life arc - transition to non-existent state (commented)
// life_arc InvalidLifeArc {
// state start {
// on ready -> nonexistent // Error: state 'nonexistent' not defined
// }
// }