Skip to content

Commit

Permalink
Expose Symbol::getDeclaredType in python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
tdp2110 committed May 5, 2023
1 parent 5414450 commit 3c25761
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bindings/python/symbols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ void registerSymbols(py::module_& m) {
.def_property_readonly("isScope", &Symbol::isScope)
.def_property_readonly("isType", &Symbol::isType)
.def_property_readonly("isValue", &Symbol::isValue)
.def_property_readonly("declaredType", &Symbol::getDeclaredType)
.def_property_readonly("declaringDefinition", &Symbol::getDeclaringDefinition)
.def_property_readonly("randMode", &Symbol::getRandMode)
.def_property_readonly("nextSibling", &Symbol::getNextSibling)
Expand Down

0 comments on commit 3c25761

Please sign in to comment.