Update python/ql/src/semmle/python/PrintAst.qll

Co-authored-by: yoff <lerchedahl@gmail.com>
This commit is contained in:
Erik Krogh Kristensen
2020-10-20 23:19:47 +02:00
committed by GitHub
parent 1d2ca42d49
commit 3306b59a14

View File

@@ -134,7 +134,7 @@ class TopLevelPrintAstNode extends PrintAstNode {
*
* This class can be overwriten to define more specific behavior for some `AstNode`s.
* The `getChildNode` and `getStmtList` methods can be overwritten to easily set up a child-parent relation between different `AstElementNode`s.
* Be very carefull about overridding `getChild`, as `getChildNode` and `getStmtList` depends on the default beavior of `getChild`.
* Be very carefull about overriding `getChild`, as `getChildNode` and `getStmtList` depends on the default beavior of `getChild`.
*/
class AstElementNode extends PrintAstNode, TElementNode {
AstNode element;