Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Apr 14, 2021
1 parent b925696 commit b56b7b0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/types.md
Expand Up @@ -3874,7 +3874,7 @@ Covered nodes:

#### Block

A cover of BlockStatement and its alike.
Deprecated. Will be removed in Babel 8.
```javascript
t.isBlock(node);
```
Expand Down Expand Up @@ -3982,7 +3982,7 @@ Covered nodes:

#### EnumBody

A cover of enum bodies defined in [TypeScript](https://www.typescriptlang.org/docs/handbook/enums.html) and Flow.
A cover of Flow enum bodies.
```javascript
t.isEnumBody(node);
```
Expand All @@ -3995,7 +3995,7 @@ Covered nodes:

#### EnumMember

A cover of enum membors defined in [TypeScript](https://www.typescriptlang.org/docs/handbook/enums.html) and Flow.
A cover of Flow enum membors.
```javascript
t.isEnumMember(node);
```
Expand Down Expand Up @@ -4075,7 +4075,7 @@ Covered nodes:

#### ExpressionWrapper

A wrapper of expression that does not have run semantics.
A wrapper of expression that does not have runtime semantics.
```javascript
t.isExpressionWrapper(node);
```
Expand Down Expand Up @@ -4288,7 +4288,7 @@ Covered nodes:

#### Immutable

A cover of immutable AST nodes.
A cover of immutable objects and JSX elements. An object is [immutable](https://tc39.es/ecma262/#immutable-prototype-exotic-object) if no other properties can be defined once created.
```javascript
t.isImmutable(node);
```
Expand Down Expand Up @@ -4485,7 +4485,7 @@ Covered nodes:

#### Pureish

A cover of AST nodes which does not have side-effect. In other words, there is no observable behaviour changes if they are evaluated more than once.
A cover of AST nodes which do not have side-effects. In other words, there is no observable behaviour changes if they are evaluated more than once.
```javascript
t.isPureish(node);
```
Expand All @@ -4504,7 +4504,7 @@ Covered nodes:

#### Scopable

A cover of [FunctionParent](#FunctionParent) and [BlockParent](#BlockParent).
A cover of [FunctionParent](#functionparent) and [BlockParent](#blockparent).
```javascript
t.isScopable(node);
```
Expand Down Expand Up @@ -4707,7 +4707,7 @@ Covered nodes:

#### UserWhitespacable


Deprecated. Will be removed in Babel 8.
```javascript
t.isUserWhitespacable(node);
```
Expand Down

0 comments on commit b56b7b0

Please sign in to comment.