| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-07-13 | Merge pull request #5831 from paulespinosa/langref-hello-world-more | Andrew Kelley | |
| Explain Language Ref's Hello World | |||
| 2020-07-13 | Use Writer for Language Reference Hello World Example | Paul Espinosa | |
| `OutStream` has been deprecated, so the "Hello, World!" example has been updated to use `Writer`. | |||
| 2020-07-12 | update compile error tests and some doc comments | Vexu | |
| 2020-07-11 | add 'anytype' to stage1 and langref | Vexu | |
| 2020-07-11 | Introduce Error Union and Use Writer | Paul Espinosa | |
| This commit edits the "Hello, World!" introduction. It introduces Error Union Types. Also, it changes `outStream` to `writer` in the code example and description. | |||
| 2020-07-11 | Update doc/langref.html.in | Paul | |
| Co-authored-by: Joachim Schmidt <joachim.schmidt557@outlook.com> | |||
| 2020-07-11 | Update doc/langref.html.in | Paul | |
| Co-authored-by: Joachim Schmidt <joachim.schmidt557@outlook.com> | |||
| 2020-07-11 | Update doc/langref.html.in | Paul | |
| Co-authored-by: Joachim Schmidt <joachim.schmidt557@outlook.com> | |||
| 2020-07-11 | Update doc/langref.html.in | Paul | |
| Co-authored-by: Joachim Schmidt <joachim.schmidt557@outlook.com> | |||
| 2020-07-09 | Explain Language Ref's Hello World | Paul Espinosa | |
| To introduce the Zig programming language, the "Hello, world!" code sample now has documentation to explain some of the features shown in the code sample and contains links to those features in the rest of the documentation. Writing style goals: * Balance writing style to keep beginner and experience programmers interested. * Be concise: allow the rest of the documentation to clarify language features. | |||
| 2020-07-09 | langref: Expand "if error union with optional" test case | Ryan Liptak | |
| Follow-up to #5818, closes #5819 | |||
| 2020-07-08 | ci: check langref.html for html errors | xackus | |
| 2020-07-08 | langref: Add test case for "if error union with optional" | Ryan Liptak | |
| This is an edge case that isn't too uncommon but is rather confusing to try to deduce without documentation, since it feels like `else` is being overloaded in this scenario and there's no obvious 'correct' behavior here. This just adds a test demonstrating how Zig currently behaves in this scenario. | |||
| 2020-07-08 | Rename langref's Index to Contents (TOC) | Paul Espinosa | |
| The language reference's Index is a list of the documentation's contents in order of appearance. This commit renames "Index" to "Contents" as in table of contents. It also renames the HTML/CSS identifiers from "index" to "toc". | |||
| 2020-07-05 | update more HashMap API usage | Andrew Kelley | |
| 2020-07-01 | Add documentation for @src() builtin | Chris Watson | |
| 2020-07-01 | in docs removed "path can be absolute" for imports | CodeMyst | |
| 2020-06-24 | Updated @asyncCall docs | Alexandros Naskos | |
| 2020-06-23 | Refactor PreopenList.find() | Jakub Konka | |
| This commit generalizes `std.fs.wasi.PreopenList.find(...)` allowing search by `std.fs.wasi.PreopenType` union type rather than by dir name. In the future releases of WASI, it is expected to have more preopen types (or capabilities) than just directories. This commit aligns itself with that vision. This is a potentially breaking change. However, since `std.fs.wasi.PreopenList` wasn't made part of any Zig release yet, I think we should be OK to introduce those changes without pointing to any deprecations. | |||
| 2020-06-20 | langref - document that This works on enums too | Sebastian | |
| 2020-06-19 | Replaced all occurrences of std.debug.warn in the docs with std.debug.print | Eleanor NB | |
| 2020-06-12 | Merge pull request #5589 from kubkon/preopens-example | Andrew Kelley | |
| Add doc example for extracting WASI preopens | |||
| 2020-06-12 | Merge pull request #5595 from ifreund/doc-arraylist-fix | Veikka Tuominen | |
| docs: fix mention of deprecated ArrayList.span() | |||
| 2020-06-12 | docs: fix mention of deprecated ArrayList.span() | Isaac Freund | |
| 2020-06-11 | Add doc example for extracting WASI preopens | Jakub Konka | |
| 2020-06-09 | Update langref.html.in | Jakub Konka | |
| 2020-06-09 | Document the builtins | Jakub Konka | |
| 2020-05-23 | update docgen to new ast API | Andrew Kelley | |
| 2020-05-16 | Merge pull request #5353 from Vexu/parser | Vexu | |
| Self-hosted parser fixes | |||
| 2020-05-15 | fix infinite loop with mismatced bracket | Vexu | |
| 2020-05-15 | Merge pull request #5336 from Vexu/parser | Vexu | |
| Make self-hosted parser more error tolerant | |||
| 2020-05-14 | remove useless nosuspend parsing | Vexu | |
| nosuspend cannot be used in a type expression and all other use casesare covered by PrimaryExpr | |||
| 2020-05-13 | Merge pull request #5254 from ifreund/top-level-struct-file-names | Vexu | |
| Apply naming conventions of structs to files | |||
| 2020-05-10 | mem.eql need slice type | 熊鑫 | |
| 2020-05-07 | Merge pull request #5268 from tadeokondrak/remove-callconv-redundant-syntax | Andrew Kelley | |
| Remove syntax redundant with callconv | |||
| 2020-05-05 | Remove reference to import type (#5279) | Lann | |
| * Remove reference to import type * Improve language in `@This()` doc | |||
| 2020-05-05 | update docs/tests for async/extern fn removal | Tadeo Kondrak | |
| 2020-05-05 | remove nakedcc/stdcallcc/async fn/extern fn fnproto | Tadeo Kondrak | |
| 2020-05-05 | Rename noasync to nosuspend in self-hosted, add rewriter | Tadeo Kondrak | |
| 2020-05-02 | Apply naming conventions of structs to files | Isaac Freund | |
| 2020-04-28 | Merge pull request #5196 from tadeokondrak/@vector-to-@type-vector | Andrew Kelley | |
| `@Vector` -> `@Type(.Vector)` | |||
| 2020-04-28 | Update language reference for std.meta.Vector | Tadeo Kondrak | |
| 2020-04-28 | Update language reference for recent @Type changes | Tadeo Kondrak | |
| 2020-04-13 | langref: add link to 0.6.0 version | Andrew Kelley | |
| 2020-04-12 | Update documentation of @panic | Sören Tempel | |
| The default panic handler implementation was moved to `builtin.zig`. | |||
| 2020-04-11 | clarify what "not valid" means | Andrew Kelley | |
| 2020-04-11 | add note about `@tagName` for non-exhaustive enums | emekoi | |
| 2020-04-09 | Update docgen to new ArrayList API | joachimschmidt557 | |
| 2020-04-08 | Update langref.html.in | markfirmware | |
| 2020-04-07 | langref: small updates | xackus | |
