Skip to content

Commit

Permalink
Acknowledge Expr as a possible type for :struct_type lowered AST (#…
Browse files Browse the repository at this point in the history
…33868)

[ci skip]
  • Loading branch information
timholy authored Nov 16, 2019
1 parent 917c706 commit 98d01b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/src/devdocs/ast.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,20 +356,20 @@ These symbols appear in the `head` field of [`Expr`](@ref)s in lowered form.

* `args[2]`

A `call` expression that creates `SimpleVector` specifying its parameters
A `call` expression that creates a `SimpleVector` specifying its parameters

* `args[3]`

A `call` expression that creates `SimpleVector` specifying its fieldnames
A `call` expression that creates a `SimpleVector` specifying its fieldnames

* `args[4]`

A `Symbol` or `GlobalRef` specifying the supertype (e.g., `:Integer` or
`GlobalRef(Core, :Any)`)
A `Symbol`, `GlobalRef`, or `Expr` specifying the supertype (e.g., `:Integer`,
`GlobalRef(Core, :Any)`, or `:(Core.apply_type(AbstractArray, T, N))`)

* `args[5]`

A `call` expression that creates `SimpleVector` specifying its fieldtypes
A `call` expression that creates a `SimpleVector` specifying its fieldtypes

* `args[6]`

Expand Down

2 comments on commit 98d01b7

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan

Please sign in to comment.