evaluationKind = $evaluationKind; } /** * @return self::EVALUATION_KIND_* */ public function getEvaluationKind() { return $this->evaluationKind; } /** * Stack trace showing the line/column/procedure name of each frame on the * stack at the point where the current evaluation happened. The leaf frame is * first, the primary script is last. Never empty. * * @param ScriptStackFrame[] $stackFrames */ public function setStackFrames($stackFrames) { $this->stackFrames = $stackFrames; } /** * @return ScriptStackFrame[] */ public function getStackFrames() { return $this->stackFrames; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ScriptStatistics::class, 'Google_Service_Bigquery_ScriptStatistics');