Files
Nassi-Shneiderman-Diagramm-…/interpreter/Lexer.py
2021-03-28 12:12:46 +02:00

9 lines
196 B
Python

"""Lexer.py: Definition for Lexer class"""
from function_scope import Function_scope
class Lexer:
"""This class will lex the provided Java source and generate a list of Function_scopes"""