| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
Rename `InlineRangeStmt` to `UnrollRangeStmt` (eventually merge the two AST nodes)
|
| | |
|
| |
|
|
| |
`package runtime` usage
|
| |
|
|
| |
(-strict-style) idea
|
| |
|
|
| |
improve error messages
|
| |
|
|
|
|
| |
instead of `String`
To make `i32` safe, the parser limits the file size of odin files to a maximum of 2GiB (which will be good enough for the vast vast majority of cases)
|
| | |
|
| |
|
|
| |
`//+private`
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
| |
paths; Replace `-all` with `-short`
Example:
odin doc core/path core/path/filepath
|
| |
|
|
| |
`*_test.odin` files
|
| |
|
|
| |
when the parameter doesn't need to grow
|
| | |
|
| |
|
|
| |
specific arenas
|
| |
|
|
|
|
|
|
|
|
|
|
| |
See https://llvm.org/docs/LangRef.html#inline-assembler-expressions
Example:
```
x := asm(i32) -> i32 {
"bswap $0",
"=r,r",
}(123);
```
Allowed directives `#side_effect`, `#align_stack`, `#att`, `#intel` e.g. `asm() #side_effect #intel {...}`
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |\ |
|
| | | |
|
| |\| |
|
| | |
| |
| |
| | |
polymorphic) to a procedure
|
| | | |
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
logical binary expressions (short-circuiting)
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|