mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
15 lines
274 B
Python
15 lines
274 B
Python
from typing import Iterator, Optional, Union
|
|
|
|
import lief.dwarf
|
|
|
|
|
|
class Formal(lief.dwarf.Parameter):
|
|
@property
|
|
def type(self) -> Optional[lief.dwarf.Type]: ...
|
|
|
|
class TemplateValue(lief.dwarf.Parameter):
|
|
pass
|
|
|
|
class TemplateType(lief.dwarf.Parameter):
|
|
pass
|