- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Possible mistake in language specification
Thu, 2011-08-11, 18:45
Hi,
Scala Language Specification at 6.12.3 says that infix operators
starting with '=' have higher priority than those starting with '<',
yet tests with Scala 2.9 show otherwise (and also Java has it vice-
versa).
Jean-Philippe Pellet helped me to notice this contradiction:
http://stackoverflow.com/questions/7022207/why-scala-changed-relative-pr...
best greetings,
Aivar
Thu, 2011-08-11, 19:07
#2
Re: Possible mistake in language specification
In test I compared '===', '<<<' and '>>>'
Aivar
On Aug 11, 8:48 pm, Daniel Sobral wrote:
> On Thu, Aug 11, 2011 at 14:45, Aivar wrote:
> > Hi,
>
> > Scala Language Specification at 6.12.3 says that infix operators
> > starting with '=' have higher priority than those starting with '<',
> > yet tests with Scala 2.9 show otherwise (and also Java has it vice-
> > versa).
>
> Did you take the "= as in assignment" exception into account?
>
>
>
> > Jean-Philippe Pellet helped me to notice this contradiction:
> >http://stackoverflow.com/questions/7022207/why-scala-changed-relative...
>
> > best greetings,
> > Aivar
>
> --
> Daniel C. Sobral
>
> I travel to the future all the time.
Thu, 2011-08-11, 19:17
#3
Re: Possible mistake in language specification
Oh, I see your point. Yes, indeed, this seems to be a mistake in the
reference (also present in PinS, and probably other books as well).
On Thu, Aug 11, 2011 at 14:45, Aivar wrote:
> Hi,
>
> Scala Language Specification at 6.12.3 says that infix operators
> starting with '=' have higher priority than those starting with '<',
> yet tests with Scala 2.9 show otherwise (and also Java has it vice-
> versa).
>
> Jean-Philippe Pellet helped me to notice this contradiction:
> http://stackoverflow.com/questions/7022207/why-scala-changed-relative-pr...
>
> best greetings,
> Aivar
>
>
Thu, 2011-08-11, 20:57
#4
Re: Possible mistake in language specification
Thanks for catching this! I'll update the SLS. -- Martin
On Thu, Aug 11, 2011 at 7:45 PM, Aivar <aivar.annamaa@gmail.com> wrote:
--
Martin Odersky
Prof., EPFL and Chairman, Typesafe
PSED, 1015 Lausanne, Switzerland
Tel. EPFL: +41 21 693 6863
Tel. Typesafe: +41 21 691 4967
On Thu, Aug 11, 2011 at 7:45 PM, Aivar <aivar.annamaa@gmail.com> wrote:
Hi,
Scala Language Specification at 6.12.3 says that infix operators
starting with '=' have higher priority than those starting with '<',
yet tests with Scala 2.9 show otherwise (and also Java has it vice-
versa).
Jean-Philippe Pellet helped me to notice this contradiction:
http://stackoverflow.com/questions/7022207/why-scala-changed-relative-precedence-of-relational-vs-equality-operators-compar
best greetings,
Aivar
--
Martin Odersky
Prof., EPFL and Chairman, Typesafe
PSED, 1015 Lausanne, Switzerland
Tel. EPFL: +41 21 693 6863
Tel. Typesafe: +41 21 691 4967
Fri, 2011-08-12, 13:17
#5
Re: Possible mistake in language specification
The same applies to '!'.
I.e. both, '=' and '!', should be over the '<' '>' in the list in the SLS.
Test:
class Foo(name: String) {
override def toString = name
def >(o: Foo) = new Foo("(" + this + " > " + o + ")")
def !(o: Foo) = new Foo("(" + this + " ! " + o + ")")
def =#(o: Foo) = new Foo("(" + this + " =# " + o + ")")
}
val foo = new Foo("x")
println(foo ! foo > foo) // (x ! (x > x)) ==> '>' binds more tightly than '!'
println(foo =# foo ! foo) // ((x =# x) ! x)
println(foo ! foo =# foo) // ((x ! x) =# x) ==> '!' and '=' have the same precedence
--
Eugen Labun
On 2011-08-11 21:49, martin odersky wrote:
> Thanks for catching this! I'll update the SLS. -- Martin
>
> On Thu, Aug 11, 2011 at 7:45 PM, Aivar > wrote:
On Thu, Aug 11, 2011 at 14:45, Aivar wrote:
> Hi,
>
> Scala Language Specification at 6.12.3 says that infix operators
> starting with '=' have higher priority than those starting with '<',
> yet tests with Scala 2.9 show otherwise (and also Java has it vice-
> versa).
Did you take the "= as in assignment" exception into account?
>
> Jean-Philippe Pellet helped me to notice this contradiction:
> http://stackoverflow.com/questions/7022207/why-scala-changed-relative-pr...
>
> best greetings,
> Aivar
>
>