コード例 #1
0
ファイル: segfixes.py プロジェクト: bwhmather/codetalker
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
ファイル: noignore.py プロジェクト: bwhmather/codetalker
def at(rule):
    rule | (no_ignore('@', ID), _or(STRING, SSTRING))