forked from qt-creator/qt-creator
Fix C++ Library wizard when compiled with Qt < 5.12
Only Qt 5.12 got true ECMA Script capabilities, so arrow function expressions are not supported before that. To be able to use "regular" inline functions, we allow usage of } by escaping with backslash. For variables that do not start with "JS:" we already supported backslash for escaping. Fixes: QTCREATORBUG-22336 Change-Id: I9fc638e64d2757a21fffc16355635e2fcff87a36 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -111,7 +111,9 @@ void JsExpander::registerForExpander(Utils::MacroExpander *macroExpander)
|
||||
"JS",
|
||||
QCoreApplication::translate("Core::JsExpander",
|
||||
"Evaluate simple JavaScript statements.<br>"
|
||||
"The statements may not contain '{' nor '}' characters."),
|
||||
"Literal '}' characters must be escaped as \"\\}\", "
|
||||
"'\\' characters must be escaped as \"\\\\\", "
|
||||
"and \"%{\" must be escaped as \"%\\{\"."),
|
||||
[this](QString in) -> QString {
|
||||
QString errorMessage;
|
||||
QString result = evaluate(in, &errorMessage);
|
||||
|
||||
Reference in New Issue
Block a user