Exemple #1
0
 def getCondition(self):
     return getCSVRowValue(self.rows[0])
def getFunctionNameForFunction(node):
    for child in node.children:
        if child.row[0] == FUNCTION_NAME:
            return getCSVRowValue(child.row)
    raise
Exemple #3
0
def getFunctionNameForFunction(node):
    for child in node.children:
        if child.row[0] == FUNCTION_NAME:
            return getCSVRowValue(child.row)
    raise