ids -> tags (part 2)

This commit is contained in:
SuperAuguste 2020-07-16 11:05:56 -04:00
parent da4d2c2be1
commit ce841d1dc4
3 changed files with 4 additions and 4 deletions

View File

@ -1019,7 +1019,7 @@ pub fn getFieldAccessType(
while (true) { while (true) {
const tok = tokenizer.next(); const tok = tokenizer.next();
switch (tok.tag) { switch (tok.id) {
.Eof => return FieldAccessReturn{ .Eof => return FieldAccessReturn{
.original = current_type, .original = current_type,
.unwrapped = try resolveDerefType(store, arena, current_type, &bound_type_params), .unwrapped = try resolveDerefType(store, arena, current_type, &bound_type_params),
@ -1806,7 +1806,7 @@ fn lookupSymbolGlobalInternal(
if (scope.decls.getEntry(symbol)) |candidate| { if (scope.decls.getEntry(symbol)) |candidate| {
switch (candidate.value) { switch (candidate.value) {
.ast_node => |node| { .ast_node => |node| {
if (node.id == .ContainerField) continue; if (node.tag == .ContainerField) continue;
}, },
.label_decl => continue, .label_decl => continue,
else => {}, else => {},

View File

@ -75,7 +75,7 @@ fn symbolReferencesInternal(
const node = node_handle.node; const node = node_handle.node;
const handle = node_handle.handle; const handle = node_handle.handle;
switch (node.id) { switch (node.tag) {
.ContainerDecl, .Root, .Block => { .ContainerDecl, .Root, .Block => {
var idx: usize = 0; var idx: usize = 0;
while (node.iterate(idx)) |child| : (idx += 1) { while (node.iterate(idx)) |child| : (idx += 1) {

View File

@ -232,7 +232,7 @@ fn writeNodeTokens(builder: *Builder, arena: *std.heap.ArenaAllocator, store: *D
var child_frame = try arena.child_allocator.alignedAlloc(u8, std.Target.stack_align, FrameSize); var child_frame = try arena.child_allocator.alignedAlloc(u8, std.Target.stack_align, FrameSize);
defer arena.child_allocator.free(child_frame); defer arena.child_allocator.free(child_frame);
switch (node.id) { switch (node.tag) {
.Root, .Block => { .Root, .Block => {
const first_tok = if (node.cast(ast.Node.Block)) |block_node| block: { const first_tok = if (node.cast(ast.Node.Block)) |block_node| block: {
try writeToken(builder, block_node.label, .label); try writeToken(builder, block_node.label, .label);