13 lines
262 B
Python
13 lines
262 B
Python
from typing import Optional, List
|
|
|
|
from line import Line
|
|
from highlighted_range import HighlightedRange
|
|
|
|
|
|
class Highlight:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def compute_highlight(self, line: Line) -> Optional[List[HighlightedRange]]:
|
|
return None
|