File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
tests/unit_tests/Test/PM/Unit Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ /// This is eqivalent to the %Library.Any, which seems to be unavailable in earlier version of IRIS
2
+ Class %IPM .DataType .Any [ ClassType = " " , System = 1 ]
3
+ {
4
+
5
+ }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Method Load(path As %String)
31
31
}
32
32
33
33
/// Get the specified argument for the specified package
34
- Method GetArg (package As %String , args ... As %String ) As %Any
34
+ Method GetArg (package As %String , args ... As %String ) As %IPM . DataType . Any
35
35
{
36
36
Set obj = ..Config .%Get (package )
37
37
Original file line number Diff line number Diff line change @@ -85,12 +85,12 @@ Method TestMergeDynamicObjects()
85
85
}
86
86
}
87
87
88
- ClassMethod Equal (j1 As %Any , j2 As %Any ) As %Boolean
88
+ ClassMethod Equal (j1 As %IPM . DataType . Any , j2 As %IPM . DataType . Any ) As %Boolean
89
89
{
90
90
Quit ..IsSubset (j1 , j2 ) && ..IsSubset (j2 , j1 )
91
91
}
92
92
93
- ClassMethod IsSubset (j1 As %Any , j2 As %Any ) As %Boolean
93
+ ClassMethod IsSubset (j1 As %IPM . DataType . Any , j2 As %IPM . DataType . Any ) As %Boolean
94
94
{
95
95
If j1 = j2 {
96
96
Return 1
You can’t perform that action at this time.
0 commit comments