Article Tomoko Furuzono · Jul 25, 2024 1m read

How to compile class routines with mapped modifier

InterSystems FAQ rubric

To compile class routines including the mapped modifier, specify the compiler modifier "/mapped=1" or "/mapped". For example, do the following:

[Example 1] Get the class list and compile 

do$System.OBJ.GetClassList(.list,"/mapped")
 // build your classes starting from .listdo$System.OBJ.Compile(.list) 

[Example 2] Compile all classes 

do$system.OBJ.CompileAll("/mapped") 

Comments

David Foard · Jul 29, 2024

Is there a benefit to compiling mapped classes first before all others?

0