コード例 #1
0
ファイル: CFG.py プロジェクト: pombredanne/chucky-old
 def getCondition(self):
     return getCSVRowValue(self.rows[0])
コード例 #2
0
def getFunctionNameForFunction(node):
    for child in node.children:
        if child.row[0] == FUNCTION_NAME:
            return getCSVRowValue(child.row)
    raise
コード例 #3
0
def getFunctionNameForFunction(node):
    for child in node.children:
        if child.row[0] == FUNCTION_NAME:
            return getCSVRowValue(child.row)
    raise