Skip to content

Commit

Permalink
Updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lvcabral committed May 1, 2024
1 parent baff017 commit b7d5e94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interpreter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1733,10 +1733,10 @@ export class Interpreter implements Expr.Visitor<BrsType>, Stmt.Visitor<BrsType>
}

/**
* Returns the Backtrace formatted as a string or an array
* Returns the Backtrace formatted as an array for Try/Catch
* @param loc the location of the error
* @param bt the backtrace array, default is current stack trace
* @returns a string or an array with the backtrace formatted
* @returns an array with the backtrace formatted
*/
formatBacktrace(loc: Location, bt?: TracePoint[]): RoArray {
const backTrace = bt ?? this._stack;
Expand Down

0 comments on commit b7d5e94

Please sign in to comment.