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 (
Collapse
)
Author
Age
Files
Lines
*
Parallelize parser on *nix
gingerBill
2018-08-19
1
-2
/
+1
|
*
Add underlying type for `bit_set`
gingerBill
2018-08-17
1
-5
/
+13
|
*
bit_set['A'..'Z'], bit_set[0..8]
gingerBill
2018-08-16
1
-1
/
+6
|
*
Fix typos in parser
gingerBill
2018-08-16
1
-7
/
+7
|
*
Fix defer ir bug
gingerBill
2018-08-15
1
-24
/
+7
|
*
`bit_set` constants
gingerBill
2018-08-14
1
-3
/
+16
|
*
Add `bit_set` type
gingerBill
2018-08-14
1
-0
/
+21
|
*
`auto_cast` prefix for procedure parameters
gingerBill
2018-08-09
1
-8
/
+16
|
*
Add `*with_allocator` procedures to `mem`
gingerBill
2018-08-05
1
-1
/
+1
|
*
Replace `context <- c {}` with `context = c;`. context assignments are ↵
gingerBill
2018-08-04
1
-35
/
+1
|
|
|
|
scope based
*
Reduce number of range and slice operators #239
gingerBill
2018-08-01
1
-12
/
+6
|
|
|
|
Replace .. and ... with : and ..
*
foreign import x {"foo.lib", "bar.lib"}
gingerBill
2018-07-29
1
-14
/
+49
|
*
using Foo :: enum {A, B, C}; len(Foo)
gingerBill
2018-07-29
1
-22
/
+21
|
*
BigInt support in the constant system
gingerBill
2018-07-28
1
-80
/
+27
|
*
Rename `free` to `delete` for non pointer types
gingerBill
2018-07-08
1
-1
/
+1
|
*
Fix anonymous procedures
gingerBill
2018-07-01
1
-0
/
+3
|
*
Allow importation of `core:builtin` to get built-in entities
gingerBill
2018-06-17
1
-4
/
+20
|
*
Rename `clone_ast_node` to `clone_ast`
gingerBill
2018-06-17
1
-110
/
+110
|
*
Big renaming: `AstNode` to `Ast`
gingerBill
2018-06-17
1
-635
/
+635
|
*
Minimize AstNode size
gingerBill
2018-06-17
1
-13
/
+8
|
*
Modify CommentGroup parsing
gingerBill
2018-06-17
1
-59
/
+54
|
*
Modify how build settings are handled
gingerBill
2018-06-15
1
-4
/
+4
|
*
Allow for base enum type with an enum declaration
gingerBill
2018-06-11
1
-1
/
+0
|
*
Remove the need for a look ahead
gingerBill
2018-06-11
1
-19
/
+3
|
*
Change how `context <-` is parsed to remove the need for a look-ahead
gingerBill
2018-06-11
1
-24
/
+25
|
*
Remove `using in` stuff
gingerBill
2018-06-11
1
-42
/
+10
|
*
Use global arena for AstNode allocations
gingerBill
2018-06-09
1
-17
/
+10
|
*
Remove special shared scope for runtime stuff
gingerBill
2018-06-03
1
-1
/
+2
|
*
Remove need for __llvm_core
gingerBill
2018-06-03
1
-10
/
+10
|
*
Re-allow `when` statements at the file scope
gingerBill
2018-06-02
1
-2
/
+27
|
*
Handle multiple +build package tags with '!' (nots)
gingerBill
2018-05-28
1
-37
/
+55
|
*
Comment based build tags for packages (basic and temporary)
gingerBill
2018-05-28
1
-6
/
+82
|
*
Remove `tmp_allocator` from `Checker`
gingerBill
2018-05-28
1
-70
/
+70
|
*
Parallelize per file rather than per package
gingerBill
2018-05-28
1
-182
/
+161
|
*
Change import lookup
gingerBill
2018-05-27
1
-3
/
+6
|
*
Clean up name mangling by using unique package names per project
gingerBill
2018-05-27
1
-0
/
+16
|
*
Reorganize `runtime` package
gingerBill
2018-05-27
1
-35
/
+55
|
*
Err on empty directory packages
gingerBill
2018-05-27
1
-4
/
+4
|
*
Remove dead code
gingerBill
2018-05-27
1
-38
/
+5
|
*
Single file "main" file
gingerBill
2018-05-27
1
-6
/
+29
|
*
Allow for either .odin file or directory as the initial start
gingerBill
2018-05-27
1
-3
/
+23
|
*
Move ODIN_* platform constants to `core:os`
gingerBill
2018-05-27
1
-3
/
+3
|
*
IR now builds with the new package system
gingerBill
2018-05-27
1
-1
/
+3
|
*
Add basic package support (no IR support yet)
gingerBill
2018-05-26
1
-106
/
+97
|
*
Parse directories to be packages
gingerBill
2018-05-21
1
-42
/
+116
|
*
Fix demo for removing default struct values
gingerBill
2018-05-20
1
-3
/
+2
|
*
Remove code relating to default struct values
gingerBill
2018-05-20
1
-2
/
+1
|
*
Allow for NO_DEFAULT_STRUCT_VALUES
gingerBill
2018-05-13
1
-4
/
+6
|
|
|
|
(will decide later if I want them or not)
*
Comment out test
gingerBill
2018-05-13
1
-4
/
+4
|
*
Fix issues with exact integer bounds and remove dead code
gingerBill
2018-05-13
1
-1
/
+6
|
[next]