added dummyT in string_of_OclType

git-svn-id: https://projects.brucker.ch/su4sml/svn/infsec-import/trunk/src/su4sml@2996 3260e6d1-4efc-4170-b0a7-36055960796d
This commit is contained in:
Achim D. Brucker 2005-08-29 06:28:17 +00:00
parent 60fd646460
commit 5306516f26
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ fun string_of_OclType Integer = "Integer"
| string_of_OclType (Collection t) = ("Collection("^(string_of_OclType t)^")")
| string_of_OclType OclVoid = "OclVoid"
| string_of_OclType (Classifier p) = (string_of_path p)
| string_of_OclType DummyT = "DummyT"
end