PyFile:TypeAliasStatementWithTypeVarTuple.py
  PyTypeAliasStatement
    PsiElement(Py:TYPE_KEYWORD)('type')
    PsiWhiteSpace(' ')
    PsiElement(Py:IDENTIFIER)('MyTypeWithTypeVarTuple')
    PyTypeParameterList
      PsiElement(Py:LBRACKET)('[')
      PyTypeParameter
        PsiElement(Py:MULT)('*')
        PsiElement(Py:IDENTIFIER)('Ts')
      PsiElement(Py:RBRACKET)(']')
    PsiWhiteSpace(' ')
    PsiElement(Py:EQ)('=')
    PsiWhiteSpace(' ')
    PySubscriptionExpression
      PyReferenceExpression: Tuple
        PsiElement(Py:IDENTIFIER)('Tuple')
      PsiElement(Py:LBRACKET)('[')
      PyStarExpression
        PsiElement(Py:MULT)('*')
        PyReferenceExpression: Ts
          PsiElement(Py:IDENTIFIER)('Ts')
      PsiElement(Py:RBRACKET)(']')