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

Add support for angle bracket ⟨ ⟩ #27712

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ New language features

* Added `⟂` (`\perp`) operator with comparison precedence ([#24404]).

* Added angle bracket `⟨ ⟩`, it is lowered to the function call `anglebracket`.
You can input them via LaTeX names `\langle`(`⟨`) and `\rangle`(`⟩`) ([#27712]).

* The `missing` singleton object (of type `Missing`) has been added to represent
missing values ([#24653]). It propagates through standard operators and mathematical functions,
and implements three-valued logic, similar to SQLs `NULL` and R's `NA`.
Expand Down Expand Up @@ -1624,3 +1627,4 @@ Command-line option changes
[#27212]: https://github.com/JuliaLang/julia/issues/27212
[#27248]: https://github.com/JuliaLang/julia/issues/27248
[#27401]: https://github.com/JuliaLang/julia/issues/27401
[#27712]: https://github.com/JuliaLang/julia/issues/27712
3 changes: 3 additions & 0 deletions base/exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ export
=>,
∘,

# brackets
anglebracket,

# scalar math
@evalpoly,
abs,
Expand Down
7 changes: 7 additions & 0 deletions base/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -905,3 +905,10 @@ julia> map(splat(+), zip(1:3,4:6))
```
"""
splat(f) = args->f(args...)

"""
anglebracket(x, y)

The syntax `⟨x, y⟩` calls `anglebracket(x, y)`.
"""
function anglebracket end
1 change: 1 addition & 0 deletions doc/src/base/base.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ Base.invokelatest
new
Base.:(|>)
Base.:(∘)
Base.anglebracket
```

## Syntax
Expand Down
1 change: 1 addition & 0 deletions doc/src/base/punctuation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Extended documentation for mathematical symbols & functions is [here](@ref math-
| `⊻` | bitwise xor operator |
| `*` | multiply, or matrix multiply |
| `()` | the empty tuple |
| `⟨ ⟩` | the angle bracket (calling [`anglebracket`](@ref)) |
| `~` | bitwise not operator |
| `\` | backslash operator |
| `'` | complex transpose operator Aᴴ |
Expand Down
1 change: 1 addition & 0 deletions doc/src/manual/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ A few special expressions correspond to calls to functions with non-obvious name
| `A[i] = x` | [`setindex!`](@ref) |
| `A.n` | [`getproperty`](@ref Base.getproperty) |
| `A.n = x` | [`setproperty!`](@ref Base.setproperty!) |
| `⟨x, y⟩` | [`anglebracket`](@ref Base.anglebracket) |

## [Anonymous Functions](@id man-anonymous-functions)

Expand Down
14 changes: 9 additions & 5 deletions src/julia-parser.scm
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
(define reserved-word? (Set reserved-words))

(define closing-token?
(let ((closer? (Set '(else elseif catch finally #\, #\) #\] #\} #\;))))
(let ((closer? (Set '(else elseif catch finally #\, #\) #\] #\} #\⟩ #\;))))
(lambda (tok)
(or (and (eq? tok 'end) (not end-symbol))
(closer? tok)
Expand Down Expand Up @@ -404,7 +404,7 @@
(let ((nxt (peek-char port)))
(and (not (eof-object? nxt))
(or (identifier-start-char? nxt)
(memv nxt '(#\( #\[ #\{ #\@ #\` #\~ #\"))))))
(memv nxt '(#\( #\[ #\{ #\⟨ #\@ #\` #\~ #\"))))))
(error (string "numeric constant \"" s "\" cannot be implicitly multiplied because it ends with \".\"")))
;; n is #f for integers > typemax(UInt64)
(cond (is-hex-float-literal (numchk n s) (double n))
Expand Down Expand Up @@ -530,7 +530,7 @@

((identifier-start-char? c) (accum-julia-symbol c port))

((string.find "()[]{},;\"`@" c) (read-char port))
((string.find "()[]{}⟨⟩,;\"`@" c) (read-char port))

((string.find "0123456789" c) (read-number port #f #f))

Expand Down Expand Up @@ -712,7 +712,7 @@
(if (or (number? t) (and (symbol? t) (not (non-standalone-symbol-token? t))))
(begin (take-token s)
(let ((nxt (peek-token s)))
(if (or (eqv? nxt #\,) (eqv? nxt #\) ) (eqv? nxt #\}) (eqv? nxt #\]))
(if (or (eqv? nxt #\,) (eqv? nxt #\) ) (eqv? nxt #\}) (eqv? nxt #\]) (eqv? nxt #\⟩))
t
(begin (ts:put-back! s t spc)
(parse-assignment s parse-pair)))))
Expand Down Expand Up @@ -1069,7 +1069,7 @@
(initial-reserved-word? (car expr))))))
;; to allow x'y as a special case
#;(and (pair? expr) (memq (car expr) '(|'| |.'|))
(not (memv t '(#\( #\[ #\{))))
(not (memv t '(#\( #\[ #\{ #\⟨ ))))
)
(not (ts:space? s))
(not (operator? t))
Expand Down Expand Up @@ -2360,6 +2360,10 @@
((comprehension) `(braces ,@(cdr vex)))
(else `(bracescat ,@(cdr vex))))))))

((eqv? t #\⟨ )
(take-token s)
`(anglebracket ,@(parse-call-arglist s #\⟩)))

;; string literal
((eqv? t #\")
(take-token s)
Expand Down
8 changes: 8 additions & 0 deletions src/julia-syntax.scm
Original file line number Diff line number Diff line change
Expand Up @@ -2243,6 +2243,14 @@
'$
(lambda (e) (error "\"$\" expression outside quote"))

'anglebracket
(lambda (e)
(if (has-parameters? (cdr e))
(error "unexpected semicolon inside ⟨ ⟩"))
(if (any assignment? (cdr e))
(error "unexpected assignment inside ⟨ ⟩"))
(expand-forms `(call (top anglebracket) ,@(cdr e))))

'vect
(lambda (e)
(if (has-parameters? (cdr e))
Expand Down
8 changes: 8 additions & 0 deletions test/syntax.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1353,6 +1353,14 @@ end
# issue #25994
@test Meta.parse("[a\nfor a in b]") == Expr(:comprehension, Expr(:generator, :a, Expr(:(=), :a, :b)))

# pr 27712
@test Meta.parse("⟨⟩") == Expr(:anglebracket)
@test Meta.parse("⟨a,b⟩") == Expr(:anglebracket, :a, :b)
@test Meta.lower(@__MODULE__, :(⟨a;⟩)) == Expr(:error, "unexpected semicolon inside ⟨ ⟩")
@test_throws ParseError Meta.parse("⟨a b⟩")
@test_throws ParseError Meta.parse("⟨1 2;3 4⟩")
@test Meta.parse("f⟨x⟩") == :(f * $(Expr(:anglebracket, :x)))
Copy link
Member

Choose a reason for hiding this comment

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

I wonder whether it would make more sense to give this its own expression head, like we already do with vect/ref, braces/curly, or [typed_]h/vcat, instead of parsing this as juxtaposition.

Copy link
Contributor

@MasonProtter MasonProtter Oct 30, 2020

Choose a reason for hiding this comment

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

I think that's a good idea. :anglecall? :anglegetindex?

Copy link
Member

Choose a reason for hiding this comment

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

Yeah, anglecall probably seems most natural to me.

Copy link
Contributor

@MasonProtter MasonProtter Oct 30, 2020

Choose a reason for hiding this comment

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

One reason we might want to call it :anglegetindex is because it seems natural to also want a :anglesetindex for the expression f⟨x⟩ = 1, but I don't have a strong feeling either way.

Copy link
Member

Choose a reason for hiding this comment

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

Shouldn't it be called angleref then? With this PR, your example should still be valid surface syntax for use in macros. I don't think we want to do anything special for this in lowering though, at least for now, since it's not really clear what this should do.


# Module name cannot be a reserved word.
@test_throws ParseError Meta.parse("module module end")

Expand Down