index
:
odin/Odin.git
bill/all_or_none
bill/any-type-switch-if-else
bill/change-license
bill/compiler-optimizations-2025-09
bill/conditional-zero
bill/const-union
bill/dir-organization
bill/disallow-128-bit
bill/fix-current-os-package
bill/fix-data-races-2026-02
bill/force-type-assert
bill/global-variable-distribution
bill/init-fini-changes
bill/integer-concatenation
bill/io-error-changes
bill/must-tail
bill/new-slice-sort
bill/range-init
bill/remove-test-suffix
bill/shared-partial-return-memory
bill/subtype-type-info
bill/typeid-sip-hash
bill/utf16-strings
core-flags
core_os2_revamp
custom-math-sin
fix-4225
llvm-12-support
master
middle-end
mimalloc
mv/libc-errors
new_os
orca-dev
text-template
update-tilde
windows-llvm-11.1.0
windows-llvm-12.0.1
windows-llvm-13.0.0
Odin Programming Language
Odin Lang
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
parser.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix #1054
gingerBill
2021-07-10
1
-3
/
+11
*
Remove `try`; Replace `try x else y` with `or_else(x, y)`
gingerBill
2021-07-05
1
-36
/
+0
*
Fix `try` parsing for expression statements
gingerBill
2021-07-04
1
-0
/
+1
*
Try `try` and `or_else` built-in procedures with operators `try` and `try else`
gingerBill
2021-07-04
1
-0
/
+35
*
Make default calling convention code more correct to read
gingerBill
2021-06-08
1
-1
/
+1
*
Replace `js_wasm32` with `freestanding_wasm32`
gingerBill
2021-06-08
1
-1
/
+1
*
All spaces in `import`-like paths
gingerBill
2021-06-03
1
-1
/
+3
*
Fix #996
gingerBill
2021-05-31
1
-9
/
+11
*
Add range-based error messages to `-verbose-errors`
gingerBill
2021-05-19
1
-124
/
+34
*
Replace `error` calls with `Token` to use `TokenPos`
gingerBill
2021-05-19
1
-4
/
+4
*
Add `-verbose-errors` which shows the error in the line of code
gingerBill
2021-05-19
1
-0
/
+43
*
Allow `..=` alongside `..` as a "full range" operator; Update `core:odin/pars...
gingerBill
2021-05-16
1
-8
/
+10
*
Tokenize `++` and `--` as tokens but disallow them in the parser, and give be...
gingerBill
2021-05-15
1
-8
/
+25
*
Disallow duplicate unary operators for `+`, `-`, and `~`
gingerBill
2021-05-15
1
-3
/
+13
*
Fix #746
gingerBill
2021-05-12
1
-8
/
+9
*
Unify `AstTernaryExpr` with `AstTernaryIfExpr`
gingerBill
2021-05-05
1
-14
/
+1
*
Fix missing newline check
gingerBill
2021-05-04
1
-0
/
+2
*
Add missing `skip_possible_newline_for_literal` calls
gingerBill
2021-05-03
1
-1
/
+5
*
Fix parsing error for `for`
gingerBill
2021-05-02
1
-1
/
+1
*
Add extra check for `#no_bounds_check` etc being followed by a newline or emp...
gingerBill
2021-05-01
1
-16
/
+15
*
Simplify/Fix the state_flag behaviour for code generation
gingerBill
2021-05-01
1
-0
/
+8
*
Add "naked" calling convention (removes prologue and epilogue)
gingerBill
2021-04-28
1
-0
/
+1
*
Make compound literals require trailing commas if followed by a newline
gingerBill
2021-04-26
1
-0
/
+3
*
Change expr_level increment rules within a compound literal
gingerBill
2021-04-26
1
-2
/
+0
*
Fix constant aliasing for debug information
gingerBill
2021-04-26
1
-0
/
+4
*
Fix logic for `\n` ignoring
gingerBill
2021-04-26
1
-0
/
+9
*
Correct `\n` ignore rules
gingerBill
2021-04-26
1
-3
/
+10
*
Make -strict-style the default #871
gingerBill
2021-04-26
1
-10
/
+5
*
Move out some intrinsics into separate procedures in llvm_backend.cpp; Rename...
gingerBill
2021-04-24
1
-22
/
+22
*
Improve `#optional_ok` logic for procedures; Add `#optional_second` for `pack...
gingerBill
2021-04-19
1
-0
/
+1
*
Experiment with new grammatical parsing rule for expression level (-strict-st...
gingerBill
2021-03-30
1
-6
/
+34
*
Add basic error correction in `parser` to check for unattached `else`
gingerBill
2021-03-26
1
-0
/
+27
*
Add better package declaration specific error message (#878)
gingerBill
2021-03-24
1
-0
/
+5
*
Make the parser support as many identifiers on the LHS in `for in` loops to i...
gingerBill
2021-03-24
1
-22
/
+6
*
Improve error message in parser
gingerBill
2021-03-23
1
-2
/
+2
*
Allow `$` in polymorphic record parameter fields (but disallow mixing)
gingerBill
2021-03-23
1
-3
/
+10
*
Change from `test_*` prefix to `@(test)` attribute for `odin test`
gingerBill
2021-03-14
1
-0
/
+1
*
`odin test` to work with the new `core:testing` package
gingerBill
2021-03-14
1
-1
/
+15
*
Add support for backslash \ to consume a newline
gingerBill
2021-03-14
1
-5
/
+0
*
Simplify `expect_semicolon_newline_error` rule
gingerBill
2021-03-13
1
-18
/
+13
*
Remove `&& false` from test code
gingerBill
2021-03-13
1
-1
/
+1
*
Add `-strict-style` flag: Enforces code style stricter whilst parsing, requir...
gingerBill
2021-03-13
1
-11
/
+73
*
Minimize TokenPos size by using `i32` for line/column/offset and file_id inst...
gingerBill
2021-03-04
1
-6
/
+16
*
Add `#force_inline` parsing directly to expression statements
gingerBill
2021-02-25
1
-0
/
+4
*
Remove `#force_inline for` and only have `#unroll for`
gingerBill
2021-02-25
1
-1
/
+1
*
Build tag to make all declarations within a file private to the package `//+p...
gingerBill
2021-02-23
1
-0
/
+2
*
Add deprecation message for `inline` and `no_inline` to use `#force_inline` a...
gingerBill
2021-02-23
1
-0
/
+2
*
Remove `#opaque` types
gingerBill
2021-02-23
1
-12
/
+2
*
Remove `bit_field` keyword and parsing logic
gingerBill
2021-02-23
1
-60
/
+0
*
Remove `#opaque` usage in core library
gingerBill
2021-02-23
1
-16
/
+0
[next]