about summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
AgeCommit message (Expand)AuthorLines
2016-04-26allow InternedString to be compared to &str directlyOliver Schneider-0/+22
2016-04-24syntax: Make `is_path_start` precise and improve some error messages about un...Vadim Petrochenkov-0/+5
2016-04-24syntax: Merge keywords and remaining special idents in one listVadim Petrochenkov-137/+89
2016-04-24syntax: Make static/super/self/Self keywords + special ident cleanupVadim Petrochenkov-105/+54
2016-04-24syntax: Get rid of token::IdentStyleVadim Petrochenkov-32/+24
2016-04-24syntax: Don't rely on token::IdentStyle in the parserVadim Petrochenkov-62/+26
2016-04-05Fixes bug which accepting using `super` in use statemet.vlastachu-1/+1
2016-03-22try! -> ?Jorge Aparicio-1/+1
2016-03-14Add `default` as contextual keyword, and parse it for impl items.Aaron Turon-48/+49
2016-03-06Auto merge of #30884 - durka:inclusive-ranges, r=aturonbors-1/+1
2016-03-02Use numeric field `Name`s ("0", "1" etc) for positional fieldsVadim Petrochenkov-1/+1
2016-02-27libsyntax: parse inclusive rangesAlex Burka-1/+1
2016-02-12Use more autoderef in libsyntaxJonas Schievink-1/+1
2016-02-11[breaking-change] don't glob export ast::BinOp_Oliver Schneider-20/+20
2016-01-26Use interpolated token span when building spans for bigger expressionsFlorian Hahn-0/+8
2016-01-06Remove irrelevant commentHuon Wilson-3/+0
2015-12-15Generated code spans now point to callsite parameters (where applicable)Daniel Campbell-1/+1
2015-11-26Add syntax support for attributes on expressions and all syntaxMarvin Löbel-0/+1
2015-11-11libsyntax: Add more quasiquoting macrosKyle Mayes-1/+3
2015-09-24Cleanup interfaces of Name, SyntaxContext and IdentVadim Petrochenkov-7/+7
2015-09-11Remove some remains of virtual structs from the parserVadim Petrochenkov-6/+6
2015-09-03Use consistent terminology for byte string literalsVadim Petrochenkov-4/+4
2015-07-28remove `get_ident` and `get_name`, make `as_str` soundOliver Schneider-17/+9
2015-05-15syntax: Add unquoting ast::{Generics,WhereClause}Erick Tryzelaar-0/+4
2015-05-09Squeeze the last bits of `task`s in documentation in favor of `thread`Barosl Lee-8/+8
2015-04-25Interpolate AST nodes in quasiquote.Geoffry Song-0/+7
2015-04-25Auto merge of #24547 - bombless:comma, r=pnkfelixbors-0/+8
2015-04-25Fix #20616York Xiang-0/+8
2015-04-24Change name of unit test sub-module to "tests".Johannes Oertel-1/+1
2015-04-14std: Remove old_io/old_path/rand modulesAlex Crichton-16/+0
2015-03-13Auto merge of #23229 - aturon:stab-path, r=alexcrichtonbors-0/+2
2015-03-12Stabilize std::pathAaron Turon-0/+2
2015-03-10Remove proc keywordGuillaume Gomez-4/+4
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-4/+4
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-8/+8
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-2/+2
2015-02-14Auto merge of #22158 - Kimundi:the_lonely_uppercase_keyword, r=pnkfelixbors-2/+7
2015-02-12Made `Self` a keyword.Marvin Löbel-2/+7
2015-02-10rollup merge of #21918: ranma42/replace-beAlex Crichton-1/+1
2015-02-06Fix infinite loop errorGuillaumeGomez-1/+1
2015-02-06Update to last version, remove "[]" as much as possibleGuillaumeGomez-1/+1
2015-02-06Libsyntax has been updatedGuillaumeGomez-1/+1
2015-02-06Replace the get method by the deref one on InternedStringGuillaumeGomez-14/+1
2015-02-06Add Str trait to InternedString, set get method deprecatedGuillaumeGomez-0/+8
2015-02-04Replace `be` with `become`Andrea Canciani-1/+1
2015-02-03Rename std::path to std::old_pathAaron Turon-1/+1
2015-02-02Tweak some ‘expected…’ error messagesP1start-1/+1
2015-01-30Use absolute path to FullRange, rather than assuming it is in the preludeNick Cameron-49/+48
2015-01-29s/Show/Debug/gJorge Aparicio-6/+6
2015-01-25Add the span of the operator itself to ast::BinOp.Huon Wilson-1/+1