Source positions#

pulumi/pulumi:proto/pulumi/source.proto

Messages#

πŸ“¨ SourcePosition#

A SourcePosition represents a position in a source file.

uri string

The URI of the file. Currently only the file scheme with an absolute path is supported.

line int32

The line in the file

column int32

The column in the line

πŸ“¨ StackFrame#

A StackFrame represents a single stack frame.

pc SourcePosition

The position of the frame’s program counter. Optional.

πŸ“¨ StackTrace#

A StackTrace represents the frames on the stack at the point of an RPC call.

frames StackFrame

The frames on the stack.