isInt function
Returns whether the type expression
is int.
Implementation
bool isInt(ast.AST expression, AnalyzedClass analyzedClass) {
final type = getExpressionType(expression, analyzedClass);
return type.isDartCoreInt;
}
Returns whether the type expression
is int.
bool isInt(ast.AST expression, AnalyzedClass analyzedClass) {
final type = getExpressionType(expression, analyzedClass);
return type.isDartCoreInt;
}