arguments = $arguments; } /** * @return Variable[] */ public function getArguments() { return $this->arguments; } /** * @param string */ public function setFunction($function) { $this->function = $function; } /** * @return string */ public function getFunction() { return $this->function; } /** * @param Variable[] */ public function setLocals($locals) { $this->locals = $locals; } /** * @return Variable[] */ public function getLocals() { return $this->locals; } /** * @param SourceLocation */ public function setLocation(SourceLocation $location) { $this->location = $location; } /** * @return SourceLocation */ public function getLocation() { return $this->location; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(StackFrame::class, 'Google_Service_CloudDebugger_StackFrame');