1
1
mirror of https://github.com/github/semantic.git synced 2024-12-29 18:06:14 +03:00

Add Doc operators.

This commit is contained in:
Rob Rix 2015-09-28 17:05:36 -04:00
parent a90e508a8e
commit 119fdaed78

View File

@ -33,6 +33,21 @@ infix operator &&& {
precedence 120
}
infix operator <> {
associativity right
precedence 140
}
infix operator <+> {
associativity right
precedence 140
}
infix operator </> {
associativity right
precedence 140
}
prefix operator ^ {}
postfix operator * {}