includeDefinition
Imports another CQL library into the current library. The optional version clause pins the included library, and the optional called clause provides a local alias for accessing its public members.
Examples
Include without alias
include FHIRHelpers
Include with version
include FHIRHelpers version '4.0.1'
Include with alias for use in expressions
include MATGlobalCommonFunctions version '7.0.000' called Common
EBNF
includeDefinition
: 'include' qualifiedIdentifier ('version' versionSpecifier)? ('called' localIdentifier)?
;