PyFile:WithStatement31.py
  PyWithStatement
    PsiElement(Py:WITH_KEYWORD)('with')
    PsiWhiteSpace(' ')
    PyWithItem
      PyReferenceExpression: x
        PsiElement(Py:IDENTIFIER)('x')
      PsiWhiteSpace(' ')
      PsiElement(Py:AS_KEYWORD)('as')
      PsiWhiteSpace(' ')
      PyTargetExpression: a
        PsiElement(Py:IDENTIFIER)('a')
    PsiElement(Py:COMMA)(',')
    PsiWhiteSpace(' ')
    PyWithItem
      PyReferenceExpression: y
        PsiElement(Py:IDENTIFIER)('y')
      PsiWhiteSpace(' ')
      PsiElement(Py:AS_KEYWORD)('as')
      PsiWhiteSpace(' ')
      PyTargetExpression: b
        PsiElement(Py:IDENTIFIER)('b')
    PsiElement(Py:COLON)(':')
    PsiWhiteSpace(' ')
    PyStatementList
      PyPassStatement
        PsiElement(Py:PASS_KEYWORD)('pass')