Uploaded image for project: 'Groovy'
  1. Groovy
  2. GROOVY-4480

Parsing seems to have changed in 1.8

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 1.8-rc-2, 1.9-beta-1
    • parser
    • None

    Description

      Running this script on the webconsole used to work prior to 1.8

      http://groovyconsole.appspot.com/script/192001

      However, now it fails with an exception:

      Script1.groovy: 83: unexpected token: else @ line 83, column 67.
         1).type == type2 ) token += 2 else false
      

      To get the script working again, you need to change line 83 from:

          if( get(0).type == type1 && get(1).type == type2 ) token += 2 else false
      

      to

          if( get(0).type == type1 && get(1).type == type2 ) { token += 2 } else false
      

      Attachments

        Activity

          People

            blackdrag Jochen Theodorou
            tim_yates Tim Yates
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: