Skip to content

Commit 94f1416

Browse files
authored
Merge pull request #244 from kevanstannard/syntax-lookup-if-else
Syntax lookup: if / else
2 parents 92cbc78 + 6738760 commit 94f1416

File tree

4 files changed

+50
-41
lines changed

4 files changed

+50
-41
lines changed

misc_docs/syntax/controlflow_ifelse.mdx

-20
This file was deleted.

misc_docs/syntax/language_if_else.mdx

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
id: "if-else"
3+
keywords: ["if", "else"]
4+
name: "if / else"
5+
summary: "This is the `if / else` control flow."
6+
category: "languageconstructs"
7+
---
8+
9+
Use `if / else` expressions to express a value through a `true` / `false` condition.
10+
11+
### Example
12+
13+
<CodeTab labels={["ReScript", "JS Output"]}>
14+
15+
```res
16+
let user = "Anna"
17+
18+
let greeting = if user === "Anna" {
19+
"Hi Anna!"
20+
} else {
21+
"Hi unknown!"
22+
}
23+
```
24+
25+
```js
26+
var user = "Anna";
27+
28+
var greeting = user === "Anna" ? "Hi Anna!" : "Hi unknown!";
29+
```
30+
31+
</CodeTab>
32+
33+
34+
### References
35+
36+
* [If-Else & Ternary](/docs/manual/latest/control-flow#if-else--ternary)
37+

src/SyntaxLookup.js

+12-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/SyntaxLookup.res

+1-4
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,20 @@ let requireSyntaxFile: string => MdxComp.t = %raw(`
3131
`)
3232

3333
module Category = {
34-
type t = Decorators | ControlFlow | Operators | LanguageConstructs | SpecialValues | Other
34+
type t = Decorators | Operators | LanguageConstructs | SpecialValues | Other
3535

3636
let toString = t =>
3737
switch t {
3838
| Decorators => "Decorators"
3939
| Operators => "Operators"
4040
| LanguageConstructs => "Language Constructs"
4141
| SpecialValues => "Special Values"
42-
| ControlFlow => "Control Flow"
4342
| Other => "Other"
4443
}
4544

4645
let fromString = (s: string): t => {
4746
switch s {
4847
| "decorators" => Decorators
49-
| "controlflow" => ControlFlow
5048
| "specialvalues" => SpecialValues
5149
| "operators" => Operators
5250
| "languageconstructs" => LanguageConstructs
@@ -244,7 +242,6 @@ let make = () => {
244242
Decorators,
245243
Operators,
246244
LanguageConstructs,
247-
ControlFlow,
248245
SpecialValues,
249246
Other,
250247
]->Belt.Array.map(cat => {

0 commit comments

Comments
 (0)