This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Relative precedence of postfix and infix operators

1 reply
E. Labun
Joined: 2010-06-20,
User offline. Last seen 42 years 45 weeks ago.

Hi All,

The SLS states: "Postfix operators always have lower precedence than infix operators. E.g.
e1 op1 e2 op2 is always equivalent to (e1 op1 e2) op2."

Why this has been choosen? Other programming languages[2], math expressions, EBNF expressions, and
intuition (at least, to me) treat postfix operators as having the highest precedence, even before
prefix operators.

Consider:

math: a + b!
a + b! + c

-x²
-y!

EBNF: x ~ y* (~ instead of comma/space to be Scala-like)
x ~ y? ~ z

--
Thanks,
Eugen

[1] The Scala Language Specification Version 2.9
DRAFT May 24, 2011
http://www.scala-lang.org/docu/files/ScalaReference.pdf
6.12.3 Infix Operations
p. 85

[2] Operators in C and C++ # Operator precedence
http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Operator_precedence
(postfix operators are called "suffix" there)

E. Labun
Joined: 2010-06-20,
User offline. Last seen 42 years 45 weeks ago.
Re: Relative precedence of postfix and infix operators

OK, after some reading and thinking I see the reasons: it's hard to do other (but imo, more proper) way!

Given that operands, infix operators, and postfix operators can be arbitrary identifiers, it's
impossible for the Scala parser (that tries to be context-free) to distinguish between. Imagine the
chain: ID ID ID ID ID ID ... That is what the parser essentially sees, I guess.

If the parser could know somehow, whether the names(IDs) in question are defined as infix or postfix
operators! (I.e. as methods with or without parameters)

This info is definitely here at some phase of compiling ("namer"?). Perhaps the exact treatment of
expression chains could be postponed to that phase? Or rather vice versa, that phase could be
combined with the parser phase?

It would be great to see, what you think about, guys.

--
Best,
Eugen

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland