index
:
zig
0.10.x
0.11.x
0.12.x
0.14.x
0.15.x
0.7.x
0.8.x
0.9.x
ArrayList-reserve
Io.net
aro
ast-node-methods
async-await-demo
autofix
ci-perf-comment
ci-scripts
ci-tarballs
cli
comptime-allocator
elfv2-dyn
fixes
fuzz-macos
hcs
incr-bug
io-threaded-no-queue
jobserver
json-diagnostics
llvm-ir-nosanitize-metadata
macos-debug-info
main
make-vs-configure
master
more-doctests
new-pkg-hash
powerpc64le
restricted-function-pointers
rework-comptime-mutation
sans-aro
sha1-stream
spork8
stage2-async
threadpool
threadtheft
wasm-linker-writer
wrangle-writer-buffering
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. https://ziglang.org
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
analyze.cpp
Age
Commit message (
Expand
)
Author
2015-12-12
structs are working
Andrew Kelley
2015-12-12
parsing assignment operators
Josh Wolfe
2015-12-12
fix a + b + c and similar
Josh Wolfe
2015-12-12
progress on struct support
Andrew Kelley
2015-12-12
std: print_str no longer requires length argument
Andrew Kelley
2015-12-12
prepare codebase for struct and string support
Andrew Kelley
2015-12-11
hello world working without libc
Andrew Kelley
2015-12-10
add inline assembly support
Andrew Kelley
2015-12-09
ability to call external variadic functions
Andrew Kelley
2015-12-08
support assigning to arrays
Andrew Kelley
2015-12-08
array access support
Andrew Kelley
2015-12-08
add array access syntax
Andrew Kelley
2015-12-07
integrate debug scopes with block context
Andrew Kelley
2015-12-07
all variables have memory addresses
Andrew Kelley
2015-12-07
add debugging info for array type
Andrew Kelley
2015-12-07
getting started on array types
Josh Wolfe
2015-12-06
initialize mutable variables to zero
Josh Wolfe
2015-12-06
add mutable local variables
Andrew Kelley
2015-12-05
add unused label error
Andrew Kelley
2015-12-04
error for extern function with void parameter
Andrew Kelley
2015-12-03
can't declare unreachable variables
Josh Wolfe
2015-12-03
add bool literals
Josh Wolfe
2015-12-03
fix if-else type mismatch crash
Josh Wolfe
2015-12-03
local variables work
Josh Wolfe
2015-12-03
fix analysis for variable reference
Josh Wolfe
2015-12-03
analysis for variable declaration, but not variable reference
Josh Wolfe
2015-12-03
add labels and goto
Andrew Kelley
2015-12-02
parsing variable declaration
Josh Wolfe
2015-12-02
fix execution reaches end of non-void
Andrew Kelley
2015-12-02
fix parameter access and thus shared library example
Andrew Kelley
2015-12-01
support if conditionals
Andrew Kelley
2015-12-01
implicit void statements and all tests pass with type checking
Josh Wolfe
2015-12-01
string literals have type *const u8
Josh Wolfe
2015-12-01
merge conflicts
Josh Wolfe
2015-12-01
add test for bad import
Andrew Kelley
2015-12-01
support multiple files
Andrew Kelley
2015-12-01
colored error messages that tell the source file
Andrew Kelley
2015-11-30
analyze looks for root export decl only in the root source file
Andrew Kelley
2015-11-30
Merge remote-tracking branch 'origin/master' into type-checking
Josh Wolfe
2015-11-30
closer to multiple files working
Andrew Kelley
2015-11-30
fix ast printer names
Josh Wolfe
2015-11-30
merge conflicts
Josh Wolfe
2015-11-30
refactor code to prepare for multiple files
Andrew Kelley
2015-11-30
implement basics of type checking
Josh Wolfe
2015-11-30
no more TypeId. use g->builtin_types.
Josh Wolfe
2015-11-30
Merge branch 'master' of github.com:andrewrk/zig
Josh Wolfe
2015-11-30
untangle analyze_node into a stricter call graph
Josh Wolfe
2015-11-30
analyze no longer depends on llvm C++ API
Andrew Kelley
2015-11-30
factor analysis code out of codegen
Josh Wolfe