Skip to content

Commit

Permalink
Add missed AST node
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Sep 27, 2023
1 parent 570e8aa commit 08842b5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/ast.md
Expand Up @@ -50,6 +50,7 @@ Interactively explore the AST with [AST Explorer](https://astexplorer.net/#/gist
- [Ratio](#ratio)
- [Raw](#raw)
- [Rule](#rule)
- [Scope](#scope)
- [Selector](#selector)
- [SelectorList](#selectorlist)
- [String](#string)
Expand Down Expand Up @@ -560,6 +561,16 @@ A sequence of any characters. This node type is used for unparsed fragments of C
}
```

### Scope

```js
{
type: "Scope",
root: <SelectorList> | <Raw> | null,
limit: <SelectorList> | <Raw> | null
}
```

### Selector

```js
Expand Down

0 comments on commit 08842b5

Please sign in to comment.