1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 01:54:21 +03:00
inform7/inter/bytecode-module/Chapter 5/The Local Construct.w
2022-02-20 12:17:21 +00:00

89 lines
3.6 KiB
OpenEdge ABL

[Inter::Local::] The Local Construct.
Defining the local construct.
@
@e LOCAL_IST
=
void Inter::Local::define(void) {
inter_construct *IC = InterConstruct::create_construct(LOCAL_IST, I"local");
InterConstruct::specify_syntax(IC, I"local TOKENS");
InterConstruct::permit(IC, INSIDE_CODE_PACKAGE_ICUP);
METHOD_ADD(IC, CONSTRUCT_READ_MTID, Inter::Local::read);
METHOD_ADD(IC, CONSTRUCT_VERIFY_MTID, Inter::Local::verify);
METHOD_ADD(IC, CONSTRUCT_WRITE_MTID, Inter::Local::write);
}
@
@d BLOCK_LOCAL_IFLD 2
@d DEFN_LOCAL_IFLD 3
@d KIND_LOCAL_IFLD 4
@d EXTENT_LOCAL_IFR 5
=
void Inter::Local::read(inter_construct *IC, inter_bookmark *IBM, inter_line_parse *ilp, inter_error_location *eloc, inter_error_message **E) {
*E = InterConstruct::check_level_in_package(IBM, LOCAL_IST, ilp->indent_level, eloc);
if (*E) return;
inter_package *routine = InterBookmark::package(IBM);
if (routine == NULL) { *E = Inter::Errors::plain(I"'local' used outside function", eloc); return; }
inter_symbols_table *locals = InterPackage::scope(routine);
if (locals == NULL) { *E = Inter::Errors::plain(I"function has no symbols table", eloc); return; }
text_stream *kind_text = NULL, *name_text = ilp->mr.exp[0];
match_results mr2 = Regexp::create_mr();
if (Regexp::match(&mr2, name_text, L"%((%c+)%) (%c+)")) {
kind_text = mr2.exp[0];
name_text = mr2.exp[1];
}
inter_type var_type = Inter::Types::parse(InterBookmark::scope(IBM), eloc, kind_text, E);
if (*E) return;
inter_symbol *var_name = TextualInter::new_symbol(eloc, locals, name_text, E);
if (*E) return;
InterSymbol::make_local(var_name);
SymbolAnnotation::copy_set_to_symbol(&(ilp->set), var_name);
*E = Inter::Local::new(IBM, var_name, var_type, (inter_ti) ilp->indent_level, eloc);
}
inter_error_message *Inter::Local::new(inter_bookmark *IBM, inter_symbol *var_name,
inter_type var_type, inter_ti level, inter_error_location *eloc) {
inter_tree_node *P = Inode::new_with_3_data_fields(IBM, LOCAL_IST, 0, InterSymbolsTable::id_from_symbol_at_bookmark(IBM, var_name), Inter::Types::to_TID(IBM, var_type), eloc, level);
inter_error_message *E = InterConstruct::verify_construct(InterBookmark::package(IBM), P); if (E) return E;
NodePlacement::move_to_moving_bookmark(P, IBM);
return NULL;
}
void Inter::Local::verify(inter_construct *IC, inter_tree_node *P, inter_package *owner, inter_error_message **E) {
if (P->W.extent != EXTENT_LOCAL_IFR) { *E = Inode::error(P, I"extent wrong", NULL); return; }
inter_symbols_table *locals = InterPackage::scope(owner);
if (locals == NULL) { *E = Inode::error(P, I"no symbols table in function", NULL); return; }
*E = Inter::Verify::local_defn(P, DEFN_LOCAL_IFLD, locals); if (*E) return;
Inter::Types::verify_type_field(owner, P, KIND_LOCAL_IFLD, -1, E);
}
void Inter::Local::write(inter_construct *IC, OUTPUT_STREAM, inter_tree_node *P, inter_error_message **E) {
inter_package *pack = InterPackage::container(P);
inter_symbol *var_name = InterSymbolsTable::symbol_from_ID_in_package(pack, P->W.instruction[DEFN_LOCAL_IFLD]);
if (var_name) {
WRITE("local ");
Inter::Types::write_type_field(OUT, P, KIND_LOCAL_IFLD);
WRITE("%S", InterSymbol::identifier(var_name));
SymbolAnnotation::write_annotations(OUT, P, var_name);
} else { *E = Inode::error(P, I"cannot write local", NULL); return; }
}
inter_type Inter::Local::type_of(inter_symbol *con_symbol) {
if (con_symbol == NULL) return Inter::Types::untyped();
inter_tree_node *D = InterSymbol::definition(con_symbol);
if (D == NULL) return Inter::Types::untyped();
if (D->W.instruction[ID_IFLD] != LOCAL_IST) return Inter::Types::untyped();
return Inter::Types::from_TID(D, KIND_LOCAL_IFLD);
}