18984: [PMD] Added support for Python 2 backticks (`).

This commit is contained in:
Bram Stappers
2017-06-28 15:28:25 +02:00
committed by Maikel Steneker
parent a5b12a4e83
commit cad32d9b83

View File

@ -52,6 +52,7 @@ TOKEN : /* SEPARATORS */
| < COMMA: "," >
| < DOT: "." >
| < COLON: ":" >
| < BACKTICK: "`" >
}
@ -280,4 +281,4 @@ MORE : /* Strings */
| <"\r"> { image.setCharAt(image.length()-1, '\n'); }
| <~["\n","\r"]>
| <"\\" ~["\n","\r"]>
}
}