예제 #1
0
def at(rule):
    rule | (no_ignore('@', ID), _or(STRING, SSTRING, star(_not(_or(';','}')))), ';')
    rule | star(_not(_or(';','}')))
예제 #2
0
파일: not.py 프로젝트: bwhmather/codetalker
def at(rule):
    rule | (no_ignore("@", ID), _or(STRING, SSTRING, star(_not(_or(";", "}")))), ";")
    rule | star(_not(_or(";", "}")))
예제 #3
0
def at(rule):
    rule | (no_ignore('@', ID), _or(STRING, SSTRING))