blob: 74b4c33fe19173a017063bcfaec21252e40da674 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Language Version
Like many programming languages, Slang experiences a tension between the desire for rapid innovation/evolution and stability. One of the benefits that users of Slang have so far enjoyed has been the rapid pace of innovation in the language and its standard library. However, as developers start to have larger bodies of Slang code, they may become concerned that changes to the language could break existing code. There is no magical way to keep innovating while also keeping the language static.
Slang supports using `#language` preprocessor directive, as well as the `-std` compiler option (`CompilerOptionName::LanguageVersion`) to specify the language version that a source file is written against. The source file will then be parsed and checked by the compiler using the rules from the specified language version.
Users are advised to provide a `#language` directive as the first non-white-space line in their source file, such as:
```
#language slang 2026
```
The following version strings are allowed:
- `latest`: use the latest language version supported by the current compiler.
- `legacy`: use the legacy Slang language.
- `2018`: equivalent to `legacy`.
- `2025`: Slang language version 2025.
- `2026`: Slang language version 2026.
If no `#language` line exists and no version is specified via compiler options, the default setting is `legacy`.
## The Legacy Slang Language
When language version is set to `legacy`, the compiler behavior will be consistent with the Slang language as in 2018-2023. Specifically:
- All declarations have `public` visibility.
- `module` declaration is not required at the start of each module.
## Slang 2025
Slang language version 2025 brings these changes on top of the legacy language:
- All declarations have `internal` visibility.
- `module` declaration is required at the start of each module.
## Slang 2026
Slang language 2026 brings these changes on top of Slang 2025:
- Comma expression is removed when it is used inside a parenthesis. The expression `(a, b)` no longer evaluates to have `b`'s type as in C/C++. Instead, `(a,b)` means `makeTuple(a,b)` and returns a tuple consists of `a` and `b`. See [SP#027](https://github.com/shader-slang/spec/blob/main/proposals/027-tuple-syntax.md) for details.
- User must explicitly opt-in to enable dynamic dispatch with `dyn` keyword. More rigorous validation are enabled to make sure dynamic dispatch is not triggerred accidentally. See [SP#024](https://github.com/shader-slang/spec/blob/main/proposals/024-any-dyn-types.md) for details.
|