9 lines
196 B
Python
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"""
|
|
|
|
|