@@ -2,61 +2,61 @@ module: dylan-user
22author: Dustin Voss
33
44define library wrapper-streams
5- use common-dylan;
6- use io;
7- use collection-extensions, import: { vector-search };
8-
9- export
10- basic-wrapper-stream,
11- replacing-stream,
12- canonical-text-stream;
5+ use common-dylan;
6+ use io;
7+ use collection-extensions, import: { vector-search };
8+
9+ export
10+ basic-wrapper-stream,
11+ replacing-stream,
12+ canonical-text-stream;
1313end library ;
1414
1515
1616define module basic-wrapper-stream
17- // from common-dylan
18- use dylan;
19- use common-extensions, exclude: { format-to-string };
20- // from io
21- use streams;
22- use format-out;
23-
24- export
25- <basic-wrapper-stream>,
26- sequence-type-for-inner-stream, string-type-for-inner-stream;
17+ // from common-dylan
18+ use dylan;
19+ use common-extensions, exclude: { format-to-string };
20+ // from io
21+ use streams;
22+ use format-out;
23+
24+ export
25+ <basic-wrapper-stream>,
26+ sequence-type-for-inner-stream, string-type-for-inner-stream;
2727end module ;
28-
28+
2929
3030define module replacing-stream
31- use basic-wrapper-stream;
32- // from common-dylan
33- use dylan;
34- use common-extensions, exclude: { format-to-string };
35- // from io
36- use streams;
37- use format-out;
38- // from collection-extensions
39- use vector-search;
40-
41- export
42- <replacing-stream>,
43- add-replacement-contents, inner-stream-position;
31+ use basic-wrapper-stream;
32+ // from common-dylan
33+ use dylan;
34+ use common-extensions, exclude: { format-to-string };
35+ // from io
36+ use streams;
37+ use format-out;
38+ // from collection-extensions
39+ use vector-search;
40+
41+ export
42+ <replacing-stream>,
43+ add-replacement-contents, inner-stream-position;
4444end module ;
4545
4646
4747define module canonical-text-stream
48- use basic-wrapper-stream;
49- use replacing-stream;
50- // from common-dylan
51- use dylan;
52- use common-extensions, exclude: { format-to-string };
53- // from io
54- use streams;
55- use format-out;
56- // from collection-extensions
57- use vector-search;
58-
59- export
60- <canonical-text-stream>,
61- tabstop-size, line-col-position;
48+ use basic-wrapper-stream;
49+ use replacing-stream;
50+ // from common-dylan
51+ use dylan;
52+ use common-extensions, exclude: { format-to-string };
53+ // from io
54+ use streams;
55+ use format-out;
56+ // from collection-extensions
57+ use vector-search;
58+
59+ export
60+ <canonical-text-stream>,
61+ tabstop-size, line-col-position;
6262end module ;
0 commit comments