summaryrefslogtreecommitdiff
path: root/Test/dafny0/Trait/TraitUsingParentMembers.dfy.expect
Commit message (Collapse)AuthorAge
* Fix: Unify column numbers in Dafny's errorsGravatar Clément Pit--Claudel2015-07-23
| | | | | | | | | Dafny counts from 0, but Boogie counts from 1. Tokens are 1-based. Thus when we print tokens, we need to decrement the column number. This was done for resolver errors, but not for verification or parsing errors. In addition, parsing errors were inconsistent with resolution errors case-wise. Unfortunately, the fix affects the output of many tests.
* Revised look-up and compilation of inherited trait members (static ↵Gravatar leino2015-04-07
| | | | functions/methods don't work yet)
* Whitespace deltas in test files (in particular, removing tabs and adjusting ↵Gravatar leino2015-04-03
| | | | some indentation)
* - fixed a bug in merging fields that come from a parent traitGravatar Reza Ahmadi2014-12-02
| | | | - added one more test
* Resolved further merge issuesGravatar leino2014-08-05
|
* - fixed a bug in inheriting members from a traitGravatar Reza Ahmadi2014-07-20
=> ResolvedClass in userdefinedtypes used to be null-> fixed - checking only bodyless methods and functions to make sure they have been implemented in the child class - added one more test