fa517180b7
Support FirStringConcatenationCall in FirCompileTimeConstantEvaluator.
This allows string templates ("foo${bar}") to be evaluated as constants,
assuming the interpolated expressions are themselves constant.
In addition, fixes some handling bugs with KtConstantEvaluationMode,
where some expressions that are not valid in a `const val` declaration
were being supported for `CONSTANT_EXPRESSION_EVALUATION`, including
non-static final Java fields in FIR, and composite expressions of
non-const properties in FE1.0.
10 lines
366 B
Plaintext
Vendored
10 lines
366 B
Plaintext
Vendored
expression: "The answer to ${QUESTION} is ${ANSWER}. The question is: ${QUESTION_MEANING}"
|
|
|
|
CONSTANT_EXPRESSION_EVALUATION
|
|
constant: NOT_EVALUATED
|
|
constantValueKind: NOT_EVALUATED
|
|
|
|
CONSTANT_LIKE_EXPRESSION_EVALUATION
|
|
constantLike: "The answer to the ultimate question of life, the universe, and everything is 42. The question is: null"
|
|
constantLikeValueKind: String
|