qml | Fix let/const variables formatting

Change-Id: Ia2a4ee482e84a6c24abea7ea6fe05925eee11d1d
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Uladzislau Paulovich
2019-06-09 02:31:28 +03:00
committed by selatnick
parent 5f26fe6298
commit 69cd74f25d
2 changed files with 6 additions and 1 deletions

View File

@@ -914,7 +914,8 @@ protected:
bool visit(VariableStatement *ast) override
{
out("var ", ast->declarationKindToken);
out(ast->declarationKindToken);
out(" ");
accept(ast->declarations);
return false;
}

View File

@@ -1,6 +1,10 @@
var x
var y = 12
var a_var = 1
let a_let = 2
const a_const = 3
function foo(a, b) {
x = 15
x += 4