Remove '.' after nullary tags in patterns
Does what it says on the tin. The next commit will remove support for this syntax.
This commit is contained in:
parent
ca7cfbe3d0
commit
04a2887f87
96 changed files with 1410 additions and 1410 deletions
|
|
@ -121,7 +121,7 @@ fn write_brief(
|
|||
ctxt.w.write_line(brief);
|
||||
ctxt.w.write_line("");
|
||||
}
|
||||
none. { }
|
||||
none { }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -134,7 +134,7 @@ fn write_desc(
|
|||
ctxt.w.write_line(desc);
|
||||
ctxt.w.write_line("");
|
||||
}
|
||||
none. { }
|
||||
none { }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -208,13 +208,13 @@ fn write_return(
|
|||
some(d) {
|
||||
ctxt.w.write_line(d);
|
||||
}
|
||||
none. { }
|
||||
none { }
|
||||
}
|
||||
}
|
||||
none. { fail "unimplemented"; }
|
||||
none { fail "unimplemented"; }
|
||||
}
|
||||
}
|
||||
none. { }
|
||||
none { }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue