summaryrefslogtreecommitdiff
path: root/Source/Dafny/Parser.cs
Commit message (Expand)AuthorAge
* Added "inductive lemma" methodsGravatar leino2015-05-07
* Added inductive predicatesGravatar leino2015-05-06
* Eliminate redundant checks of newtype and opaque function well-formedness fro...Gravatar chrishaw2015-04-02
* Allow trigger annotations in more statements and expressionsGravatar chrishaw2015-03-11
* Added 'protected' keyword (syntax)Gravatar leino2015-03-07
* Stop pretty-print from emitting deprecated semi-colons.Gravatar qunyanm2015-03-05
* Fixed issue #59.Gravatar wuestholz2015-03-03
* Add imap display/update expressionsGravatar chrishaw2015-02-27
* Add imap type, which is like map but may have have infinite sizeGravatar chrishaw2015-02-26
* Minor change to grammar to avoid missing tokenGravatar wuestholz2015-01-24
* Switched use of List(IToken) in UserDefinedType to NameSegment/ExprDotName, s...Gravatar leino2015-01-23
* Added command-line switch /allowGlobals to simplify transition from language ...Gravatar leino2015-01-07
* Fixed resolution of method calls with explicit type parameters.Gravatar leino2015-01-02
* Language change: All functions and methods declared lexically outside any cla...Gravatar leino2014-12-12
* Fixed two crashes in resolverGravatar leino2014-12-10
* MergeGravatar leino2014-12-09
|\
* | Allow user-specified type parametersGravatar leino2014-12-09
| * added multiple trait inheritance.Gravatar Reza Ahmadi2014-12-03
* | Fixed parser lookahead bug that had caused an infinite loop.Gravatar leino2014-12-02
* | Snapshot, to be continuedGravatar leino2014-12-02
|/
* Use arbitrary lookahead to determine if the next expression is a lambda expre...Gravatar leino2014-11-13
* Took a pass through the whole grammar to clean up allowSemi/allowLambda param...Gravatar leino2014-11-11
* Cleaned up a number of LL(1) conflicts in the grammar (I wish Coco/R supporte...Gravatar leino2014-11-10
* Resolved several more LL(1) warnings in the grammarGravatar Rustan Leino2014-11-06
* MergeGravatar leino2014-11-06
|\
* | Started fixing a number of LL(1) warningsGravatar leino2014-11-06
| * Now the parser parses "Type" rather than "IToken" for a traitGravatar Reza Ahmadi2014-11-05
|/
* Added initial support for dirty while statements.Gravatar chmaria2014-11-01
* Even with noCheating enabled, don't check included files or methods marked wi...Gravatar Bryan Parno2014-10-27
* Allow non-ghost axioms in order to model trusted external calls,Gravatar Bryan Parno2014-10-27
* Marked "free" as soon-to-be-deprecatedGravatar leino2014-10-25
* Made semi-colons are specification clauses optional. In a future version, th...Gravatar leino2014-10-25
* Allow underscores in numeric literals (and in field/destructor names that are...Gravatar leino2014-10-23
* Comparisons and well-founded order of charGravatar leino2014-10-21
* Add char literals.Gravatar leino2014-10-20
* Added types "char" and "string" (the latter being a synonym for "seq<char>").Gravatar leino2014-10-20
* Fixed parsing crash on malformed chaining with == and !!Gravatar leino2014-10-09
* Fixed crash after parse errorGravatar Rustan Leino2014-09-11
* Disallow parentheses-less declarations of predicates and co-predicates, along...Gravatar leino2014-08-27
* Refactored ArrowType's to be resolved with other types. ArrowTypeDecl's are n...Gravatar leino2014-08-27
* Refactoring: renamed DerivedTypeDecl to NewtypeDeclGravatar leino2014-08-26
* Changed syntax of newtypeGravatar leino2014-08-26
* Changed syntax of derived types to "newtype"Gravatar leino2014-08-21
* MergeGravatar leino2014-08-20
|\
* | Start of derived types (aka "new types")Gravatar leino2014-08-20
| * MergeGravatar Rustan Leino2014-08-19
| |\ | |/ |/|
| * Change behavior of 'decreases *', which can be applied to loops and methods. ...Gravatar Rustan Leino2014-08-19
* | Handle underscores in lambda bound variable lists properlyGravatar Dan Rosén2014-08-19
|/
* MergeGravatar Dan Rosén2014-08-11
|\
* | Add higher-order-functions and some other goodiesGravatar Dan Rosén2014-08-11