| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Make `-no-dynamic-literals` the default now | gingerBill | 2025-01-05 | 1 | -16/+21 | |
| | | | ||||||
| * | | Add `#+feature dynamic-literals` | gingerBill | 2025-01-05 | 1 | -2/+8 | |
| | | | ||||||
| * | | Add `#branch_location` | gingerBill | 2025-01-01 | 1 | -0/+12 | |
| |/ | ||||||
| * | Fix #4535 | gingerBill | 2024-12-02 | 1 | -1/+5 | |
| | | ||||||
| * | Fix assert when return value expected. | Jeroen van Rijn | 2024-11-28 | 1 | -2/+2 | |
| | | ||||||
| * | checker: only error with -vet-cast when it is actually castable | Laytan Laats | 2024-11-21 | 1 | -1/+4 | |
| | | ||||||
| * | Remove `#relative` types from the compiler | gingerBill | 2024-11-14 | 1 | -64/+0 | |
| | | ||||||
| * | Merge pull request #4394 from seventh-chord/errormessages | gingerBill | 2024-11-06 | 1 | -0/+9 | |
| |\ | | | | | Suggestion when assigning enum to bit_set | |||||
| | * | Suggestion when assigning enum to bit_set | Morten Hauke Solvang | 2024-10-19 | 1 | -0/+9 | |
| | | | ||||||
| * | | Fix previous commit for arrays | gingerBill | 2024-11-04 | 1 | -10/+9 | |
| | | | ||||||
| * | | Fix bug for `foo().bar` where `foo()` is a 0-value expression | gingerBill | 2024-11-04 | 1 | -12/+16 | |
| | | | ||||||
| * | | Fix bug caused due to incorrect type checking looking for `context` not ↵ | gingerBill | 2024-10-27 | 1 | -0/+1 | |
| |/ | | | | defined in a context | |||||
| * | Fix #4373 | gingerBill | 2024-10-13 | 1 | -2/+8 | |
| | | ||||||
| * | fix not erroring on invalid ternary | Laytan Laats | 2024-10-02 | 1 | -5/+0 | |
| | | | | | | | | For example: `a: f32 = true ? 1 : len` would get to the back-end without errors. Fixes #1690 | |||||
| * | Forbid labelled or-branch expressions within `defer` | Feoramund | 2024-09-19 | 1 | -0/+4 | |
| | | ||||||
| * | add '#caller_expression' | Laytan Laats | 2024-09-14 | 1 | -1/+6 | |
| | | ||||||
| * | Add `Suggested Example` for using an inline procedure which enables a target ↵ | gingerBill | 2024-09-12 | 1 | -0/+3 | |
| | | | | | feature | |||||
| * | fix reuse of slice for varargs with poly types | Laytan Laats | 2024-09-12 | 1 | -16/+17 | |
| | | ||||||
| * | Allow `transmute(Bit_Set)~T(0)` | gingerBill | 2024-09-11 | 1 | -1/+2 | |
| | | ||||||
| * | Fix #4229 for edge case `os.Error`/`os.Errno` legacy bodge | gingerBill | 2024-09-11 | 1 | -1/+1 | |
| | | ||||||
| * | Allow ExactValue_Invalid in assert.fix-4225 | Jeroen van Rijn | 2024-09-10 | 1 | -1/+1 | |
| | | | | | Fixes #4225 | |||||
| * | Remove extra format item at end of `context` error message | Feoramund | 2024-09-01 | 1 | -1/+1 | |
| | | ||||||
| * | Fix `new(sync.Mutex)` | gingerBill | 2024-08-31 | 1 | -1/+1 | |
| | | ||||||
| * | Fix #4156 | gingerBill | 2024-08-31 | 1 | -1/+1 | |
| | | ||||||
| * | Make `~some_bit_set` work on only the possible bits by doing a mask with the ↵ | gingerBill | 2024-08-30 | 1 | -1/+85 | |
| | | | | | full set | |||||
| * | Fix #4079 | gingerBill | 2024-08-24 | 1 | -4/+5 | |
| | | ||||||
| * | Merge pull request #4130 from fusion32/fix-ambiguous-generic-type-names | gingerBill | 2024-08-24 | 1 | -3/+5 | |
| |\ | | | | | fix ambiguous generic type names | |||||
| | * | fix wrong exact value kind comparison | fusion32 | 2024-08-23 | 1 | -1/+1 | |
| | | | ||||||
| | * | fix ambiguous generic type names | fusion32 | 2024-08-23 | 1 | -3/+5 | |
| | | | ||||||
| * | | #4115 Add `Suggestion: 'typeid_of(T)'` | gingerBill | 2024-08-24 | 1 | -0/+4 | |
| | | | ||||||
| * | | #4119 Add error when doing `{.A | .B}` instead of `{.A, .B}` with a ↵ | gingerBill | 2024-08-24 | 1 | -0/+16 | |
| | | | | | | | | | suggestion to do surround it in parentheses to make it clear it is intended | |||||
| * | | Fix #4126 | gingerBill | 2024-08-24 | 1 | -2/+2 | |
| |/ | ||||||
| * | , | Jeroen van Rijn | 2024-08-21 | 1 | -2/+2 | |
| | | ||||||
| * | dash | Jeroen van Rijn | 2024-08-21 | 1 | -2/+2 | |
| | | ||||||
| * | Add table-driven (in)definite article to some errors. | Jeroen van Rijn | 2024-08-20 | 1 | -7/+15 | |
| | | ||||||
| * | Add suggestion for `~uint(0)` if `cast(uint)-1` is done | gingerBill | 2024-08-18 | 1 | -5/+15 | |
| | | ||||||
| * | implement lshrti3 on wasm | Laytan Laats | 2024-08-18 | 1 | -46/+54 | |
| | | ||||||
| * | Fix #4024 | gingerBill | 2024-08-18 | 1 | -1/+8 | |
| | | ||||||
| * | Fix #4064 | gingerBill | 2024-08-18 | 1 | -1/+3 | |
| | | ||||||
| * | fix type hint propogation for shift | Laytan Laats | 2024-08-12 | 1 | -1/+1 | |
| | | | | | Fixes #3856 | |||||
| * | add clarity for diverging mismatch error | Laytan Laats | 2024-08-10 | 1 | -0/+18 | |
| | | ||||||
| * | Fix crash if referencing import "aliased" in other file. | Jeroen van Rijn | 2024-08-05 | 1 | -0/+8 | |
| | | | | | Fixes #4026 | |||||
| * | Disallow `err != 0` with `os.Error` when `-strict-style` is enabled | gingerBill | 2024-08-04 | 1 | -1/+2 | |
| | | ||||||
| * | Hack: Convert `0` to `nil` | gingerBill | 2024-08-04 | 1 | -1/+4 | |
| | | ||||||
| * | `os.Errno` -> `os.Error` | gingerBill | 2024-08-04 | 1 | -0/+1 | |
| | | ||||||
| * | Use `union #shared_nil` for `os.Error` | gingerBill | 2024-08-04 | 1 | -19/+16 | |
| | | ||||||
| * | Begin converting `os.Errno` to be a `nil`-able type as a transition period | gingerBill | 2024-08-04 | 1 | -0/+21 | |
| | | ||||||
| * | Begin work for `bit_set[...; [N]T]` (not working) | gingerBill | 2024-07-15 | 1 | -1/+5 | |
| | | ||||||
| * | Disable the need for mutexes in single threaded checker stage | gingerBill | 2024-07-15 | 1 | -1/+3 | |
| | | ||||||
| * | Improve error message | gingerBill | 2024-07-14 | 1 | -1/+1 | |
| | | ||||||