1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-03 07:24:58 +03:00
inform7/inbuild/inbuild-module/Chapter 4/Pipeline Services.w

19 lines
482 B
OpenEdge ABL
Raw Normal View History

2020-02-10 02:10:58 +02:00
[Pipelines::] Pipeline Services.
A pipeline is a list of steps to be followed by the Inter processor forming
the back end of the Inform compiler.
@ =
typedef struct inform_pipeline {
struct inbuild_copy *as_copy;
struct inbuild_version_number version;
MEMORY_MANAGEMENT
} inform_pipeline;
inform_pipeline *Pipelines::new_ip(text_stream *name, filename *F) {
inform_pipeline *T = CREATE(inform_pipeline);
T->as_copy = NULL;
T->version = VersionNumbers::null();
return T;
}