Skip to content

Commit

Permalink
Add some more QL docs
Browse files Browse the repository at this point in the history
  • Loading branch information
aibaars committed Sep 13, 2024
1 parent 5c02fb4 commit e682298
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 7 deletions.
14 changes: 7 additions & 7 deletions rust/ql/.generated.list

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions rust/ql/lib/codeql/rust/elements/Declaration.qll

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions rust/ql/lib/codeql/rust/elements/Unimplemented.qll

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions rust/ql/lib/codeql/rust/elements/UnimplementedDeclaration.qll

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rust/ql/lib/codeql/rust/generated/Declaration.qll

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions rust/ql/lib/codeql/rust/generated/Raw.qll

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rust/ql/lib/codeql/rust/generated/Unimplemented.qll

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions rust/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,24 @@ class AstNode(Locatable):

@qltest.skip
class Unimplemented(Element):
"""
The base class for unimplemented nodes. This is used to mark nodes that are not yet extracted.
"""
pass


class Declaration(AstNode):
"""
The base class for declarations.
"""
pass


@qltest.skip
class UnimplementedDeclaration(Declaration, Unimplemented):
"""
A declaration that is not yet extracted.
"""
pass


Expand Down

0 comments on commit e682298

Please sign in to comment.