mirror of
https://github.com/fluencelabs/interface-types
synced 2025-07-01 15:41:40 +00:00
feat(interface-types) Re-implement interface kinds.
Adopt a flat structure: Flat resolved imports, flat resolved exports, flat resolved types etc. Also, use the latest textual format for adapters & co.
This commit is contained in:
@ -5,6 +5,11 @@ macro_rules! consume {
|
||||
let (next_input, $parser_output) = $parser_expression;
|
||||
$input = next_input;
|
||||
};
|
||||
|
||||
(($input:ident, mut $parser_output:ident) = $parser_expression:expr) => {
|
||||
let (next_input, mut $parser_output) = $parser_expression;
|
||||
$input = next_input;
|
||||
};
|
||||
}
|
||||
|
||||
/// This macro creates an executable instruction for the interpreter.
|
||||
|
Reference in New Issue
Block a user