Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax lookup: if / else #244

Merged
merged 2 commits into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions misc_docs/syntax/controlflow_ifelse.mdx

This file was deleted.

37 changes: 37 additions & 0 deletions misc_docs/syntax/language_if_else.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
id: "if-else"
keywords: ["if", "else"]
name: "if / else"
summary: "This is the `if / else` control flow."
category: "languageconstructs"
---

Use `if / else` expressions to express a value through a `true` / `false` condition.

### Example

<CodeTab labels={["ReScript", "JS Output"]}>

```res
let user = "Anna"

let greeting = if user === "Anna" {
"Hi Anna!"
} else {
"Hi unknown!"
}
```

```js
var user = "Anna";

var greeting = user === "Anna" ? "Hi Anna!" : "Hi unknown!";
```

</CodeTab>


### References

* [If-Else & Ternary](/docs/manual/latest/control-flow#if-else--ternary)

29 changes: 12 additions & 17 deletions src/SyntaxLookup.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions src/SyntaxLookup.res
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,20 @@ let requireSyntaxFile: string => MdxComp.t = %raw(`
`)

module Category = {
type t = Decorators | ControlFlow | Operators | LanguageConstructs | SpecialValues | Other
type t = Decorators | Operators | LanguageConstructs | SpecialValues | Other

let toString = t =>
switch t {
| Decorators => "Decorators"
| Operators => "Operators"
| LanguageConstructs => "Language Constructs"
| SpecialValues => "Special Values"
| ControlFlow => "Control Flow"
| Other => "Other"
}

let fromString = (s: string): t => {
switch s {
| "decorators" => Decorators
| "controlflow" => ControlFlow
| "specialvalues" => SpecialValues
| "operators" => Operators
| "languageconstructs" => LanguageConstructs
Expand Down Expand Up @@ -244,7 +242,6 @@ let make = () => {
Decorators,
Operators,
LanguageConstructs,
ControlFlow,
SpecialValues,
Other,
]->Belt.Array.map(cat => {
Expand Down