trait CalledMethodsStore extends AnyRef
Stores information about how methods were called.
Thread Safety
"CalledMethodsStore" are immutable.
- Self Type
- CalledMethodsStore
- Source
- CalledMethodsStore.scala
- Alphabetic
- By Inheritance
- CalledMethodsStore
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract val calledMethods: Map[Method, List[Array[(domain)#DomainValue]]]
- abstract val domain: BaseDomain
The domain that is used as the target domain for the adaptation of the operand values to make them comparable.
The domain that is used as the target domain for the adaptation of the operand values to make them comparable. The domain object is not used at construction time which enables the creation of the store along with/ as part of the creation of "its" domain.
- abstract val frequentEvaluationWarningLevel: Int
Determines when we issue a frequent evaluation warning because the same method is called with different parameters more than
frequentEvaluationWarningLevel
times.Determines when we issue a frequent evaluation warning because the same method is called with different parameters more than
frequentEvaluationWarningLevel
times.The default is
10
. - implicit abstract val logContext: LogContext
Concrete Value Members
- def frequentEvaluation(method: Method, operandsSet: List[Array[(domain)#DomainValue]]): Unit
- def testOrElseUpdated(method: Method, operands: List[DomainValue]): Option[CalledMethodsStore { val domain: CalledMethodsStore.this.domain.type }]
- def updated(method: Method, operands: List[Array[(domain)#DomainValue]]): CalledMethodsStore { val domain: CalledMethodsStore.this.domain.type }