public VariableDeclaration parseVariableDeclaration(Type type = null, bool isAuto = false, Attribute[] attributes = null)
Parses a VariableDeclaration
variableDeclaration:
     _type declarator (',' declarator)* ';'
   | _type declarator '=' functionBody
   | autoDeclaration
   ;