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
|
|
@ -28,7 +28,7 @@ fn load_props(testfile: str) -> test_props {
|
|||
iter_header(testfile) {|ln|
|
||||
alt parse_error_pattern(ln) {
|
||||
option::some(ep) { error_patterns += [ep]; }
|
||||
option::none. { }
|
||||
option::none { }
|
||||
};
|
||||
|
||||
if option::is_none(compile_flags) {
|
||||
|
|
@ -89,7 +89,7 @@ fn parse_compile_flags(line: str) -> option::t<str> {
|
|||
fn parse_pp_exact(line: str, testfile: str) -> option::t<str> {
|
||||
alt parse_name_value_directive(line, "pp-exact") {
|
||||
option::some(s) { option::some(s) }
|
||||
option::none. {
|
||||
option::none {
|
||||
if parse_name_directive(line, "pp-exact") {
|
||||
option::some(fs::basename(testfile))
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue