|
Groovy example source code file (Longest1.groovy)
The Groovy Longest1.groovy source codepackage gls.ch03.s02 /** * GLS 3.2: The longest possible translation is used at each step, even if the * result does not ultimately make a correct program while another lexical * translation would. * * This is fundamental to the way the lexer works. If there is a problem with * it, other tests (e.g. to test functionality of operators or identifier * names) would expose it quickly. Nevertheless, we test some combinations * here for consistency. * * @author Alan Green */ class Longest1 extends GroovyTestCase { // Increment and decrement operators void testPrefixIncDec() { def a = 20 def b = 10 def c = a - b //c = a -- b // @fail:parse //c = a ++ b // @fail:parse //c = a +- b // @pass //c = a -+ b // @pass } } Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Longest1.groovy source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.