From 530b29ccdfb42bcb8173f270e2f89d76bc20c2bc Mon Sep 17 00:00:00 2001 From: Alex Ford Date: Fri, 4 Nov 2022 15:23:27 +0000 Subject: [PATCH] Ruby: AST ref docs - note AssignExpr --- ...tract-syntax-tree-classes-for-working-with-ruby-programs.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/codeql/codeql-language-guides/abstract-syntax-tree-classes-for-working-with-ruby-programs.rst b/docs/codeql/codeql-language-guides/abstract-syntax-tree-classes-for-working-with-ruby-programs.rst index 8b64a82fbc7..f36771fa0c4 100644 --- a/docs/codeql/codeql-language-guides/abstract-syntax-tree-classes-for-working-with-ruby-programs.rst +++ b/docs/codeql/codeql-language-guides/abstract-syntax-tree-classes-for-working-with-ruby-programs.rst @@ -222,6 +222,8 @@ All classes in this subsection are subclasses of BinaryOperation_. +------------------------+--------------------------+----------------------------+-------------------+ | Expr_ ``-`` Expr_ | SubExpr_ | BinaryArithmeticOperation_ | | +------------------------+--------------------------+----------------------------+-------------------+ +| LhsExpr_ ``=`` Expr_ | AssignExpr_ | Assignment_ | | ++------------------------+--------------------------+----------------------------+-------------------+ Literals ~~~~~~~~