Re: Parrot and the ++ and -- operators

2017-02-13 Thread Jochen Theodorou
On 12.02.2017 16:11, Mauro Zallocco wrote: Hi all. I tried this: groovy -version Groovy Version: 2.4.6 JVM: 1.8.0_66 Vendor: Oracle Corporation OS: Windows 7 int i = 0 ++(++(++i)); assert i == 1 However with C++, it gives 3. It took me a while, but I think I start to get an idea why this h

Failing joint build

2017-02-13 Thread Paolo Di Tommaso
Hi, Has something recently changed in the joint build configuration? The Nextflow build is reporting the following error: [06:17:39] [06:17:39]Process exited with code 1 [06:17:39]Gradle failure report [06:17:39][Gradle failure report] FAILURE: Build failed with an exception. [06:17:39][Gradle f

Re: Failing joint build

2017-02-13 Thread Paul King
One of the agents unregistered itself yesterday. I restarted it but it has re-run all the nightly builds yet. I just re-started Nextflow and it seems ok. Cheers, Paul. On Tue, Feb 14, 2017 at 6:05 AM, Paolo Di Tommaso wrote: > Hi, > > Has something recently changed in the joint build configurati

Re: Failing joint build

2017-02-13 Thread Paolo Di Tommaso
Great. Thank you. Paolo On Mon, Feb 13, 2017 at 10:19 PM, Paul King wrote: > One of the agents unregistered itself yesterday. I restarted it but it > has re-run all the nightly builds yet. I just re-started Nextflow and > it seems ok. > > Cheers, Paul. > > On Tue, Feb 14, 2017 at 6:05 AM, Pao

Re: Parrot and the ++ and -- operators

2017-02-13 Thread Thibault Kruse
On Feb 14, 2017 3:52 AM, "Jochen Theodorou" wrote: Options: (2) do allow these post- and prefix operators only on VariableExpressions, making the code above no longer compile Just to be sure, a VariableExpression is an expression consisting only if a variable name? And this applies to both th