Skip to content

Commit 1f35707

Browse files
committed
fix tests
1 parent b9d817d commit 1f35707

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

vdc/dmdserver/semanalysis.d

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ void do_unittests()
720720
"14,2,14,3:Error: identifier or `new` expected following `.`, not `}`\n" ~
721721
"14,2,14,3:Error: semicolon needed to end declaration of `y`, instead of `}`\a" ~
722722
"source.d(13): `y` declared here\n" ~
723-
"12,15,12,16:Error: no property `f` for type `source.S`\a" ~
723+
"12,15,12,16:Error: no property `f` for `anS` of type `source.S`\a" ~
724724
"source.d(2): struct `S` defined here\n");
725725
//dumpAST(m);
726726
string[] structProperties = [ "init", "sizeof", "alignof", "mangleof", "stringof", "tupleof" ];
@@ -745,7 +745,8 @@ void do_unittests()
745745
}
746746
};
747747
m = checkErrors(source,
748-
"12,11,12,12:Error: no property `fool` for type `source.S`\a" ~
748+
"12,11,12,12:Error: no property `fool` for `anS` of type `source.S`\a" ~
749+
"source.d(9): did you mean function `foo`?\a" ~
749750
"source.d(2): struct `S` defined here\n" ~
750751
"13,10,13,11:Error: undefined identifier `fok`, did you mean function `foo`?\n");
751752
//dumpAST(m);

vdextensions/ParamStorageAdornmentTagger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ public virtual IEnumerable<ITagSpan<ParamStorageTag>> GetTags(NormalizedSnapshot
501501
timer.Dispose();
502502
if (_adornmentTagger != null)
503503
_adornmentTagger.InvokeAsyncUpdate();
504-
}, null, 1000, System.Threading.Timeout.Infinite);
504+
}, null, 200, System.Threading.Timeout.Infinite);
505505
}
506506
}
507507
public event EventHandler<SnapshotSpanEventArgs> TagsChanged;

0 commit comments

Comments
 (0)