Changeset 3888 for devel-tools
- Timestamp:
- Jul 29, 2008, 3:55:30 PM (13 years ago)
- Location:
- devel-tools/trunk/eclipse
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
devel-tools/trunk/eclipse/org.refal.rfpdt.core/src/org/refal/rfpdt/compiler/NameChecker.java
r3846 r3888 240 240 else 241 241 astFuncDecl.funcDef = astNative; 242 } else if (astNative.right .identifier.matches("[A-Za-z_]+\\w*")) {242 } else if (astNative.right != null && astNative.right.identifier.matches("[A-Za-z_]+\\w*")) { 243 243 astNative.isNameAtLeft = false; 244 244 AstName astName = astNative.right;
Note: See TracChangeset
for help on using the changeset viewer.