dnwpark

Results 43 comments of dnwpark

For anyone who is still struggling with this, as a last resort you can provide your own `main` as per the example: https://github.com/catchorg/Catch2/blob/devel/docs/own-main.md

Possibly related error happens when using a global in a constraint ``` global blah := 'blah'; abstract constraint bad_constraint(val: str) { using (val = default::blah); } ``` ``` error: object...

@MiroslavPetrik Using this schema: ``` module default{ type Reservation { single dateRange -> range }; } ``` After doing ``` insert Reservation { dateRange := range( "2024-01-01", "2025-01-05", inc_upper :=...

@msullivan Thoughts on adding whether the set op is permitted in singleton to the schema?

@msullivan After thinking a bit, I think that changing the span could be confusing for particularly long expressions. What do you think of changing the hint to `Did you mean...

Note: This fix seems reasonable, but I need to check how other lang bindings deal with optionals. .Net looks like it might throw an index error, and really shouldn't be...