Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.74 KB

TraceNodeDto.md

File metadata and controls

50 lines (43 loc) · 1.74 KB

TraceNodeDto

Properties

Name Type Description Notes
childNodes List<TraceNodeDto> Child nodes of the current node.
detail Boolean Detail node marker.
evidence String Node evidence text.
file String Name of the file associated with this node.
fullPath String Full path to source file associated with this node.
line Integer Source file line number where issue was found.
nodeType NodeTypeEnum Type of the trace node.
primary Boolean Primry node marker.
text String Node display text.
toolTip String Node description/tooltip.

Enum: NodeTypeEnum

Name Value
IN_CALL "IN_CALL"
OUT_CALL "OUT_CALL"
IN_OUT_CALL "IN_OUT_CALL"
READ "READ"
READ_GLOBAL "READ_GLOBAL"
ASSIGN "ASSIGN"
ASSIGN_GLOBAL "ASSIGN_GLOBAL"
ALIAS "ALIAS"
COMPARE "COMPARE"
RETURN "RETURN"
REF "REF"
DEREF "DEREF"
END_SCOPE "END_SCOPE"
JUMP "JUMP"
BRANCH_TAKEN "BRANCH_TAKEN"
BRANCH_NOT_TAKEN "BRANCH_NOT_TAKEN"
EXTERNAL_ENTRY "EXTERNAL_ENTRY"
RUNTIME_SINK "RUNTIME_SINK"
RUNTIME_SOURCE "RUNTIME_SOURCE"
RUNTIME_VALIDATION "RUNTIME_VALIDATION"
RUNTIME_TRACE "RUNTIME_TRACE"
TRACE_RUNTIME_SOURCE "TRACE_RUNTIME_SOURCE"
TRACE_RUNTIME_SINK "TRACE_RUNTIME_SINK"
TAINT_CHANGE "TAINT_CHANGE"
GENERIC "GENERIC"