compiler: Support numpy.float

This would previously crash the compiler.
pull/1508/head
David Nadlinger 2020-08-09 02:43:37 +01:00
parent 8783ba2072
commit ad34df3de1
1 changed files with 4 additions and 0 deletions

View File

@ -166,6 +166,10 @@ class ASTSynthesizer:
typ = builtins.TBool()
return asttyped.NameConstantT(value=value, type=typ,
loc=self._add(repr(value)))
elif value is numpy.float:
typ = builtins.fn_float()
return asttyped.NameConstantT(value=None, type=typ,
loc=self._add("numpy.float"))
elif value is numpy.int32:
typ = builtins.fn_int32()
return asttyped.NameConstantT(value=None, type=typ,