hdl.ast: handle int subclasses as slice start/stop values.

Fixes #601.
This commit is contained in:
whitequark 2021-03-18 23:52:23 +00:00
parent f7c2b9419f
commit c30dcea24d
2 changed files with 8 additions and 2 deletions

View file

@ -765,8 +765,8 @@ class Slice(Value):
super().__init__(src_loc_at=src_loc_at)
self.value = Value.cast(value)
self.start = start
self.stop = stop
self.start = int(start)
self.stop = int(stop)
def shape(self):
return Shape(self.stop - self.start)