Browse Source

Removed obsolete fingerprint of values

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@8564 8c9fc860-2736-0410-a75d-ab315db34111
negelef 6 years ago
parent
commit
57425c5c20
1 changed files with 0 additions and 7 deletions
  1. 0 7
      source/FoxSyntaxTree.Mod

+ 0 - 7
source/FoxSyntaxTree.Mod

@@ -2592,18 +2592,11 @@ TYPE
 	(**** values ****)
 
 	Value* = OBJECT (Expression)
-	VAR fingerprint-: Fingerprint;
 
 		PROCEDURE &InitValue(position: Position);
 		BEGIN SELF.position := position; resolved := SELF;
 		END InitValue;
 
-		PROCEDURE SetFingerprint*(CONST fp: Fingerprint);
-		BEGIN
-			SELF.fingerprint := fp
-		END SetFingerprint;
-
-
 		PROCEDURE Equals*(v: Value):BOOLEAN;
 		BEGIN HALT(100); (* abstract *) RETURN FALSE; END Equals;