Skip to content

Commit

Permalink
🐛 Add missing apply function to FhirPathEvaluator
Browse files Browse the repository at this point in the history
  • Loading branch information
Dogukan Cavdaroglu committed Nov 28, 2024
1 parent 1bba161 commit dd2bed8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -469,5 +469,7 @@ object FhirPathEvaluator {

def apply(environmentVariables:Map[String, JValue]): FhirPathEvaluator = new FhirPathEvaluator(None, environmentVariables)

def apply(referenceResolver: IReferenceResolver, terminologyValidator: IFhirTerminologyValidator) = new FhirPathEvaluator(Some(referenceResolver), terminologyValidator = Some(terminologyValidator))

def apply(environmentVariables:Map[String, JValue], functionLibraries:Map[String, IFhirPathFunctionLibraryFactory], isContentFhir:Boolean):FhirPathEvaluator = new FhirPathEvaluator(None, environmentVariables, functionLibraries, isContentFhir = isContentFhir)
}

0 comments on commit dd2bed8

Please sign in to comment.