[Java] Add CharacterLiteral to CompileTimeConstantExpr.getStringValue

This commit is contained in:
Jonathan Leitschuh
2022-03-03 17:49:43 -05:00
parent 1181779c10
commit 04cd0dbfe9
8 changed files with 37 additions and 1 deletions

View File

@@ -88,5 +88,7 @@ class Values {
int var_local = final_local; //42
int var_param = notConstant; //Not constant
int var_nonfinald_local = var_field; //Not constant
String concatinatedString = "a" + "b"; //ab
String concatinatedChar = "ab" + 'c'; //abc
}
}