Merge pull request #15150 from bednar/flux-paren-expression

fix(http): add ParenExpression
pull/15244/head
kelwang 2019-09-23 21:26:57 -04:00 committed by GitHub
commit 236e8c14ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -6265,6 +6265,7 @@ components:
- $ref: "#/components/schemas/MemberExpression"
- $ref: "#/components/schemas/IndexExpression"
- $ref: "#/components/schemas/ObjectExpression"
- $ref: "#/components/schemas/ParenExpression"
- $ref: "#/components/schemas/PipeExpression"
- $ref: "#/components/schemas/UnaryExpression"
- $ref: "#/components/schemas/BooleanLiteral"
@ -6381,6 +6382,14 @@ components:
type: array
items:
$ref: "#/components/schemas/Property"
ParenExpression:
description: Represents an expression wrapped in parenthesis
type: object
properties:
type:
$ref: "#/components/schemas/NodeType"
expression:
$ref: "#/components/schemas/Expression"
PipeExpression:
description: Call expression with pipe argument
type: object