コード例 #1
0
ファイル: kifax.py プロジェクト: AwelEshetu/cwm
def p_termlist_specialOps(t):
    '''termlist : PLUS
                | GT
                | GTE
                | LT
                | LTE '''
    t[0] = [kb.constantFor(t[1])]
コード例 #2
0
ファイル: kifax.py プロジェクト: weyls/swap
def p_termlist_specialOps(t):
    '''termlist : PLUS
                | GT
                | GTE
                | LT
                | LTE '''
    t[0] = [kb.constantFor(t[1])]
コード例 #3
0
ファイル: kifax.py プロジェクト: AwelEshetu/cwm
def p_term_quotedstring(t):
    '''term : QUOTEDSTRING'''
    t[0] = kb.constantFor(t[1])
コード例 #4
0
def p_term_quotedstrin(t):
    '''term : QUOTEDSTRING'''
    t[0] = kb.constantFor(t[1])