cdx-proto
    Preparing search index...

    Type Alias Callstack_Frames

    Callstack_Frames: Message<"cyclonedx.v1_5.Callstack.Frames"> & {
        column?: number;
        fullFilename?: string;
        function?: string;
        line?: number;
        module: string;
        package?: string;
        parameters: string[];
    }

    Type declaration

    • Optionalcolumn?: number

      The column the code that is called resides.

      from field: optional int32 column = 6;

    • OptionalfullFilename?: string

      The full path and filename of the module.

      from field: optional string fullFilename = 7;

    • Optionalfunction?: string

      A block of code designed to perform a particular task.

      from field: optional string function = 3;

    • Optionalline?: number

      The line number the code that is called resides on.

      from field: optional int32 line = 5;

    • module: string

      A module or class that encloses functions/methods and other code.

      from field: string module = 2;

    • Optionalpackage?: string

      A package organizes modules into namespaces, providing a unique namespace for each type it contains.

      from field: optional string package = 1;

    • parameters: string[]

      Optional arguments that are passed to the module or function.

      from field: repeated string parameters = 4;

    from message cyclonedx.v1_5.Callstack.Frames