| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fix print segfault by missing argument in `or_*` shadowed error | Feoramund | 2024-06-22 | 1 | -1/+1 | |
| | | ||||||
| * | Add `#directory` | gingerBill | 2024-06-20 | 1 | -0/+8 | |
| | | ||||||
| * | Fix #3768 | gingerBill | 2024-06-20 | 1 | -0/+5 | |
| | | ||||||
| * | Fix `bit_set` construction crash on constant non-integer field | Feoramund | 2024-06-16 | 1 | -1/+3 | |
| | | ||||||
| * | Fix #3739 | Feoramund | 2024-06-12 | 1 | -1/+1 | |
| | | ||||||
| * | Check to see if matrices are exactly the same type | gingerBill | 2024-06-12 | 1 | -2/+3 | |
| | | ||||||
| * | Improve matrix type hinting rules a little | gingerBill | 2024-06-12 | 1 | -0/+2 | |
| | | ||||||
| * | Add `intrinsics.procedure_of` | gingerBill | 2024-06-10 | 1 | -0/+1 | |
| | | | | | | | | | ```odin foo :: proc(x: $T) { fmt.println(x) } bar :: intrinsics.procedure_of(foo(int(123))) // parameters are never ran at compile time, similar to `size_of` bar(333) // prints 333 ``` | |||||
| * | Fix typo in a `#force_inline` error message | Feoramund | 2024-06-10 | 1 | -1/+1 | |
| | | ||||||
| * | Re Fix #3713 | gingerBill | 2024-06-09 | 1 | -1/+5 | |
| | | ||||||
| * | Add edge case to `error_operand_no_value` | gingerBill | 2024-06-09 | 1 | -10/+23 | |
| | | ||||||
| * | Fix #3713 | gingerBill | 2024-06-09 | 1 | -9/+8 | |
| | | ||||||
| * | Try to fix a possible race condition with polymorphic record parameters | gingerBill | 2024-06-06 | 1 | -8/+3 | |
| | | ||||||
| * | Fix #3682 | gingerBill | 2024-06-05 | 1 | -0/+7 | |
| | | ||||||
| * | Merge pull request #3673 from ↵ | gingerBill | 2024-06-04 | 1 | -0/+2 | |
| |\ | | | | | | | | | laytan/implement-foreign-import-improvements-on-vendor Implement `#exists(path)` and use it to provide good errors for common missing vendor libraries | |||||
| | * | use `#exists` to provide good errors for common missing libraries | Laytan Laats | 2024-06-04 | 1 | -0/+1 | |
| | | | ||||||
| | * | implement `#exists(path)` | Laytan Laats | 2024-06-04 | 1 | -0/+1 | |
| | | | ||||||
| * | | Improve error message suggestion for passing enums to integers | gingerBill | 2024-06-04 | 1 | -1/+13 | |
| |/ | ||||||
| * | Initial hash directive implementation | Dudejoe870 | 2024-05-28 | 1 | -1/+2 | |
| | | ||||||
| * | Fix #3630 (first part) | gingerBill | 2024-05-26 | 1 | -1/+1 | |
| | | ||||||
| * | Be very particular with the cases for the error notes | gingerBill | 2024-05-22 | 1 | -16/+15 | |
| | | ||||||
| * | Improve errors a lot for assigning procedures of the wrong signature | gingerBill | 2024-05-22 | 1 | -2/+47 | |
| | | ||||||
| * | Fix indexing type when using a `#row_major` matrix | gingerBill | 2024-05-20 | 1 | -2/+7 | |
| | | ||||||
| * | Remove constant indexing for `matrix` value propagation | gingerBill | 2024-05-20 | 1 | -1/+1 | |
| | | ||||||
| * | Fix #3514 along with `soa.a[i]` bounds checking | gingerBill | 2024-05-16 | 1 | -2/+2 | |
| | | ||||||
| * | Remove the old switch/for semantics entirely and enforce `switch &x in y` | gingerBill | 2024-05-16 | 1 | -33/+13 | |
| | | ||||||
| * | Fix #3516 | gingerBill | 2024-05-13 | 1 | -0/+11 | |
| | | ||||||
| * | Fix #3573 | gingerBill | 2024-05-13 | 1 | -0/+7 | |
| | | ||||||
| * | Fix #3584 | gingerBill | 2024-05-13 | 1 | -0/+7 | |
| | | ||||||
| * | Check for illegal use of `distinct` | gingerBill | 2024-05-12 | 1 | -0/+1 | |
| | | ||||||
| * | fix duplicate suggestions and add missing newline | Laytan | 2024-05-09 | 1 | -1/+1 | |
| | | ||||||
| * | With `-vet-style`, give suggestion of separating where clauses with a comma ↵ | gingerBill | 2024-05-09 | 1 | -0/+14 | |
| | | | | | | | rather than '&&' This improves the error messages | |||||
| * | Remove breakpoint hook | Victor Sohier | 2024-05-06 | 1 | -1/+0 | |
| | | ||||||
| * | Explicitly handle previously implicitly handled case | Victor Sohier | 2024-05-06 | 1 | -0/+1 | |
| | | ||||||
| * | Formatting | Victor Sohier | 2024-05-05 | 1 | -4/+1 | |
| | | ||||||
| * | Fix: Fixed #soa arrays | Victor Sohier | 2024-05-05 | 1 | -2/+11 | |
| | | ||||||
| * | Merge pull request #3526 from laytan/target-features | gingerBill | 2024-05-05 | 1 | -1/+67 | |
| |\ | | | | | Improve target features support | |||||
| | * | compiler: improve target features support | Laytan Laats | 2024-05-02 | 1 | -1/+67 | |
| | | | ||||||
| * | | Improve error message's suggestion for `if !integer` | gingerBill | 2024-05-03 | 1 | -3/+5 | |
| |/ | ||||||
| * | Implement dumb `PtrMap` | gingerBill | 2024-04-26 | 1 | -5/+5 | |
| | | ||||||
| * | Obfuscate `#line` | gingerBill | 2024-04-08 | 1 | -1/+5 | |
| | | ||||||
| * | Obfuscate `#file` and `#procedure` when `-obfuscate-source-code-locations` ↵ | gingerBill | 2024-04-08 | 1 | -2/+10 | |
| | | | | | is enabled | |||||
| * | Fix printing error when field name could not be found | gingerBill | 2024-04-08 | 1 | -1/+2 | |
| | | ||||||
| * | Fix nested `ERROR_BLOCK` bug | gingerBill | 2024-04-01 | 1 | -5/+13 | |
| | | ||||||
| * | Fix error message | gingerBill | 2024-04-01 | 1 | -2/+2 | |
| | | ||||||
| * | Enforce error on old style for/switch l-value | gingerBill | 2024-03-30 | 1 | -4/+0 | |
| | | ||||||
| * | Fix another #soa race condition bug | gingerBill | 2024-03-26 | 1 | -0/+5 | |
| | | ||||||
| * | Fix error reporting for type cycles | gingerBill | 2024-03-25 | 1 | -1/+1 | |
| | | ||||||
| * | Merge pull request #3326 from rick-masters/fix_fields_wait_signal | gingerBill | 2024-03-25 | 1 | -0/+1 | |
| |\ | | | | | Fix fields_wait_signal futex. | |||||
| | * | Fix fields_wait_signal futex. | rick-masters | 2024-03-24 | 1 | -0/+1 | |
| | | | ||||||