Implemented keyword only defaults

This commit is contained in:
ben
2019-04-06 20:29:25 +13:00
parent d64554dab2
commit 5fd3cf2bcd
7 changed files with 127 additions and 63 deletions

View File

@@ -31,6 +31,7 @@ pub struct CodeObject {
bitflags! {
pub struct FunctionOpArg: u8 {
const HAS_DEFAULTS = 0x01;
const HAS_KW_ONLY_DEFAULTS = 0x02;
const HAS_ANNOTATIONS = 0x04;
}
}