summaryrefslogtreecommitdiff
path: root/Source/Dafny/Parser.cs
Commit message (Expand)AuthorAge
* Fix issue 138. Allow parenthese with the nullary constructor inGravatar qunyanm2016-02-26
* Mark old "import A as B" syntax as deprecated. The new syntax is "import A : B"Gravatar qunyanm2016-02-02
* Implement module export so we can export a subset of items defined in theGravatar qunyanm2016-01-29
* Fix build and test failures, cleanup grammar.Gravatar Richard L. Ford2016-01-27
* Implement 'extern' declaration modifier.Gravatar Richard L. Ford2016-01-27
* Fix issue 94. Allow tuple-based assignment in statement contexts.Gravatar qunyanm2015-11-14
* Fix issue 101. Instead of swapping operands for Exp opcode in BinaryExpr,Gravatar qunyanm2015-11-10
* Introduced new datatype update syntax: D.(f := E)Gravatar leino2015-10-23
* Parsing and pretty printing of the new "existential guards" of the two kinds ...Gravatar leino2015-10-03
* Merge.Gravatar Clément Pit--Claudel2015-08-19
|\
* | Refactor the error reporting codeGravatar Clément Pit--Claudel2015-08-18
| * Disallow user-defined attributes that begin with an underscoreGravatar leino2015-08-11
|/
* Update the VS extension to use the error interface defined in 576eac2e17ffGravatar Clément Pit--Claudel2015-07-29
* MergeGravatar Clément Pit--Claudel2015-07-28
|\
| * Updated parser generation to work with latest update in boogiepartners. Note ...Gravatar Rustan Leino2015-07-27
* | Clean up error reporting.Gravatar Clément Pit--Claudel2015-07-27
|/
* Fix a bug with includes and /useBaseNameForFileNameGravatar Clément Pit--Claudel2015-07-23
* Fix: Unify column numbers in Dafny's errorsGravatar Clément Pit--Claudel2015-07-23
* IronDafny related changes:Gravatar Michael Lowell Roberts2015-07-22
* MergeGravatar Rustan Leino2015-07-16
|\
| * Fixed bugs in the parsing of explicit type arguments.Gravatar Rustan Leino2015-07-16
* | [IronDafny] implemented workaround for "import opened" bug(s).Gravatar Michael Lowell Roberts2015-07-13
|/
* multiple changes...Gravatar Michael Lowell Roberts2015-07-02
* Add the ability to specify how much "fuel" a function should have,Gravatar Bryan Parno2015-07-01
* Add a compatibility layer over BigInteger.ParseGravatar Clément Pit--Claudel2015-06-07
* Add an infinite set collection type.Gravatar qunyanm2015-05-29
* Fix issue #79. Allow tuple pattern matching with parenthesis only.Gravatar qunyanm2015-05-15
* Allow MatchExpr and MatchStmt to have nested patterns. Such asGravatar qunyanm2015-05-14
* 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