improve highlighting

This commit is contained in:
2021-10-24 18:49:47 +02:00
parent 80741a7249
commit eab422a6ce
7 changed files with 121 additions and 14 deletions

12
highlight.py Normal file
View File

@@ -0,0 +1,12 @@
from typing import Optional
from line import Line
from highlighted_range import HighlightedRange
class Highlight:
def __init__(self):
pass
def compute_highlight(self, line: Line) -> Optional[HighlightedRange]:
return None