I want to get a ahead token and behind token based on DotExpr
in codeQL.
Example:
<span>${msg.data}</span>
In this example, DotExpr
is ${msg.data}
and Both of ahead and behind nodes are <span>
and </span>
.
In this case, if i can get ${msg.data}
expression how can i get <span>
and </span>
nodes with codeQL syntax?