Changeset 3787
- Timestamp:
- May 29, 2008, 3:09:30 PM (13 years ago)
- Location:
- devel-tools/trunk/eclipse
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
devel-tools/trunk/eclipse/org.refal.rfpdt.core/src/org/refal/rfpdt/compiler/ExprChecker.java
r3619 r3787 197 197 astUse.accept(this); 198 198 for (AstTopNode astTopNode : astImplem.topNodeList) 199 astTopNode.accept(this); 199 if (!(astTopNode instanceof AstFuncDef)) 200 astTopNode.accept(this); 201 for (AstTopNode astTopNode : astImplem.topNodeList) 202 if (astTopNode instanceof AstFuncDef) 203 astTopNode.accept(this); 200 204 } 201 205 -
devel-tools/trunk/eclipse/org.refal.rfpdt.test/src/org/refal/rfpdt/test/comp/FormatCheckerTest.java
r3621 r3787 83 83 expectMessage("$func F A = B; F { { { B; }; A; } = B; };", MsgCode.WrongFormatOfPatternExpression); 84 84 expectMessage("$func F A = B; F { { { A = A; }; A = B; }; };", MsgCode.WrongFormatOfFunctionResult); 85 86 expectMessage("$func F =; F ,A $iter /*empty*/ :: sX;", MsgCode.FormatMismatch); 85 87 } 86 88 -
devel-tools/trunk/eclipse/org.refal.rfpdt.ui/src/org/refal/rfpdt/editor/RfpReconcilingStrategy.java
r3566 r3787 32 32 } 33 33 34 public AstImplem getAstImplem () {34 public synchronized AstImplem getAstImplem () { 35 35 if (!isRelevant) 36 36 updateAstImplem(); … … 39 39 40 40 public void reconcile (IRegion partition) { 41 updateAstImplem();41 getAstImplem(); 42 42 if (astImplem != null) 43 43 editor.changeTextPresentation(document, PresentationVisitor.updateTextPresentation(astImplem));
Note: See TracChangeset
for help on using the changeset viewer.