Skip to content

Commit a67dc19

Browse files
committed
---
yaml --- r: 4530 b: refs/heads/master c: 347230b h: refs/heads/master v: v3
1 parent 180a155 commit a67dc19

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

[refs]

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 955ac84da4cee8c8c4722bc1f335c9582d56c669
2+
refs/heads/master: 347230b00162fa393b782aa40d61c131a0e2b086

trunk/src/rt/rust_shape.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -1284,6 +1284,17 @@ class log : public data<log,ptr> {
12841284
data<log,ptr>::walk_box_contents(align);
12851285
}
12861286

1287+
void walk_fn(bool align) { out << "fn"; }
1288+
void walk_obj(bool align) { out << "obj"; }
1289+
void walk_port(bool align) { out << "port"; }
1290+
void walk_chan(bool align) { out << "chan"; }
1291+
void walk_task(bool align) { out << "task"; }
1292+
1293+
void walk_res(bool align, const rust_fn *dtor, uint16_t n_ty_params,
1294+
const uint8_t *ty_params_sp) {
1295+
out << "res"; // TODO
1296+
}
1297+
12871298
void walk_subcontext(bool align, log &sub) { sub.walk(align); }
12881299

12891300
void walk_box_contents(bool align, log &sub, ptr &ref_count_dp) {

0 commit comments

Comments
 (0)