This commit is contained in:
Mathias Vorreiter Pedersen 2023-10-24 15:45:17 +01:00
Родитель 6f37d7c374
Коммит 862de152a1
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -141,6 +141,10 @@ class CaptureNode extends Node, TCaptureNode {
CaptureNode() { this = TCaptureNode(cn) }
/**
* Gets the underlying synthesized capture node that is created by the
* variable capture library.
*/
CaptureFlow::SynthesizedCaptureNode getSynthesizedCaptureNode() { result = cn }
}
@ -256,6 +260,7 @@ module Content {
CapturedVariableContent() { this = TCapturedVariableContent(v) }
/** Gets the underlying captured variable. */
CapturedVariable getVariable() { result = v }
override string toString() { result = v.toString() }