Class SourceInfo
The source information details.
Inherited Members
Namespace: AVM.ClientGenerator.ABI.ARC56
Assembly: Algorand.dll
Syntax
public class SourceInfo
Properties
| Edit this page View SourceErrorMessage
A human-readable string that describes the error when the program fails at the given PC.
Declaration
[JsonProperty("errorMessage")]
public string ErrorMessage { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Pc
The program counter value(s). Could be offset if pcOffsetMethod is not "none".
Declaration
[JsonProperty("pc")]
public List<int> Pc { get; set; }
Property Value
| Type | Description |
|---|---|
| List<int> |
Source
The original source file and line number that corresponds to the given PC. RECOMMENDED to be used for development purposes, but not required for clients.
Declaration
[JsonProperty("source")]
public string Source { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Teal
The TEAL line number that corresponds to the given PC. RECOMMENDED to be used for development purposes, but not required for clients.
Declaration
[JsonProperty("teal")]
public int? Teal { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |