43444546474849
if(chunk.getText().indexOf("=")>-1) { value = chunk.getText().substring(chunk.getText().indexOf("=")+1).trim(); value = value.substring(0, value.length()-1); } return new VariableDeclarationNode(type, name, value, chunk.getBeginLine()); }
53545556575859
if(chunk.getText().indexOf("=")>-1) { value = chunk.getText().substring(chunk.getText().indexOf("=")+1).trim(); value = value.substring(0, value.length()-1); } return new VariableDeclarationNode(type, name, value); }