_createConstraint(value,Relation.equalTo);// analyzer says "Type check failed" // analyzer says "The return type 'Constraint' is not a 'bool', as defined by the method '=='"
Expressionoperator+(_EquationMemberm){
if(misConstantMember){
...
...
@@ -140,7 +140,7 @@ class Expression extends _EquationMember {
if(args==null){
thrownewParserException(
"Could not find constant multiplicand or multiplier",[this,m]);
'Could not find constant multiplicand or multiplier',[this,m]);
returnnull;
}
...
...
@@ -150,7 +150,7 @@ class Expression extends _EquationMember {
_EquationMemberoperator/(_EquationMemberm){
if(!m.isConstant){
thrownewParserException(
"The divisor was not a constant expression",[this,m]);
'The divisor was not a constant expression',[this,m]);
returnnull;
}
...
...
@@ -160,10 +160,10 @@ class Expression extends _EquationMember {