zig/doc
Andrew Kelley b78c91951a remove ability to mark if and switch as inline
if and switch are implicitly inline if the condition/target
expression is known at compile time.

instead of:

```
inline if (condition) ...
inline switch (target) ...
```

one can use:

```
if (comptime condition) ...
switch (comptime target) ...
```
2017-02-02 13:23:18 -05:00
..
vim use comptime instead of inline for var and params 2017-01-22 19:51:37 -05:00
codegen.md implement `?return` expression 2016-08-29 22:14:09 -07:00
langref.md remove ability to mark if and switch as inline 2017-02-02 13:23:18 -05:00
semantic_analysis.md rewrite how importing works 2016-03-01 03:13:40 -07:00
style.md progress toward stack trace printing 2016-08-17 20:11:04 -07:00
targets.md rewrite how importing works 2016-03-01 03:13:40 -07:00