-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Visitors for TypeScript #566
base: master
Are you sure you want to change the base?
Conversation
@@ -21,6 +21,7 @@ | |||
import logging | |||
import math | |||
import operator | |||
from abc import abstractmethod |
Check notice
Code scanning / CodeQL
Unused import Note test
# class Statement(WithFeatures, WithFunctions): | ||
# """ | ||
# Base class for representing Statements which represent Expressions and Assignments | ||
# """ | ||
# | ||
# def accept(self, visitor: "ConvertStatementVisitor") -> None: | ||
# visitor.visit(self) |
Check notice
Code scanning / CodeQL
Commented-out code Note test
@@ -11,7 +11,7 @@ | |||
from typing import get_args as typing_get_args | |||
|
|||
if TYPE_CHECKING: | |||
from tested.serialisation import Assignment | |||
from tested.serialisation import AbstractAssignment |
Check failure
Code scanning / CodeQL
Module-level cyclic import Error test
tested.serialisation
tested.utils
definition
import
'AbstractAssignment' may not be defined if module
Making a visitors that can be used for the
generation.py
files. This is the implementation for TypeScript.