File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -101,5 +101,10 @@ public int CompareTo(IToken other) {
101101 }
102102 return col . CompareTo ( other . col ) ;
103103 }
104+
105+ public override string ToString ( )
106+ {
107+ return $ "({ line } , { col } )";
108+ }
104109 }
105110}
Original file line number Diff line number Diff line change 22
33 <!-- Target framework and package configuration -->
44 <PropertyGroup >
5- <Version >3.5.3 </Version >
5+ <Version >3.5.4 </Version >
66 <TargetFramework >net8.0</TargetFramework >
77 <GeneratePackageOnBuild >false</GeneratePackageOnBuild >
88 <Authors >Boogie</Authors >
Original file line number Diff line number Diff line change @@ -768,6 +768,7 @@ public async Task<IReadOnlyList<IVerificationTask>> GetVerificationTasks(Program
768768 {
769769 var sink = new CollectingErrorSink ( ) ;
770770 var resolutionErrors = program . Resolve ( Options , sink ) ;
771+
771772 string GetErrorsString ( ) => string . Join ( "\n " , sink . Errors . Select ( t => $ "{ t . Token } : { t . Message } ") ) ;
772773 if ( resolutionErrors > 0 )
773774 {
You can’t perform that action at this time.
0 commit comments