You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to build against libadalang23. That results in a build failure:
extraction-primitive_subps.adb:14:35: error: invalid use of subtype mark in expression or call
extraction-primitive_subps.adb:37:35: error: invalid use of subtype mark in expression or call
Appears that libadalang has changed LALCO.Ada_Type_Decl to a range. I changed Node.Kind = LALCO.Ada_Type_Decl into Node.KInd in LALCO.Ada_Type_Decl. Is this correct?
The text was updated successfully, but these errors were encountered:
Of course, the answer it at (the documentation of) libadalang:
if they just divided Ada_Type_Decl up into sub categories then in is correct.
if they added elements to Ada_Type_Decl then = old_element is correct.
if they splitted and added elements to Ada_Type_Decl then in <range of old_elements> is correct
However, in the last two cases, it might be that the dependency graph extractor wanted more elements than libadalang did provide and this change enables that:
in that case in <range of relevent_elements> would be the preferred solution.
I tried to build against libadalang23. That results in a build failure:
Appears that libadalang has changed
LALCO.Ada_Type_Decl
to a range. I changedNode.Kind = LALCO.Ada_Type_Decl
intoNode.KInd in LALCO.Ada_Type_Decl
. Is this correct?The text was updated successfully, but these errors were encountered: