added numgen case in exprFromName (#297)

This commit is contained in:
Alexander 2025-02-03 18:23:31 +03:00 committed by GitHub
parent 69f487d596
commit 6f574e7fd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -209,6 +209,8 @@ func exprFromName(name string) Any {
e = &CtTimeout{}
case "fib":
e = &Fib{}
case "numgen":
e = &Numgen{}
}
return e
}