about summary refs log tree commit diff
path: root/src/libsyntax
AgeCommit message (Expand)AuthorLines
2016-05-02parser: change warning into an error on `T<A=B, C>`Georg Brandl-5/+1
2016-05-02parser: do not try to continue with `unsafe` on foreign fnsGeorg Brandl-1/+1
2016-05-02lexer: do not display char confusingly in error messageGeorg Brandl-5/+4
2016-05-01parser: fix suppression of syntax errors in range RHSGeorg Brandl-9/+2
2016-05-01libsyntax/pp: replace manual ring buffer with a VecDequeGeorg Brandl-52/+19
2016-05-01libsyntax/pp: minor modernizationsGeorg Brandl-40/+32
2016-04-30Auto merge of #32846 - jseyfried:allow_unconfigured_gated_expanded_items, r=nrcbors-3/+1
2016-04-28Rollup merge of #33218 - oli-obk:interned_str_cmp, r=nikomatsakisSteve Klabnik-3/+25
2016-04-28Auto merge of #33161 - jseyfried:parse_tuple_struct_field_vis, r=nikomatsakisbors-7/+38
2016-04-27Auto merge of #32791 - LeoTestard:feature-gate-clean, r=nikomatsakisbors-579/+462
2016-04-27Make some fatal lexer errors recoverablemitaa-67/+108
2016-04-26allow InternedString to be compared to &str directlyOliver Schneider-3/+25
2016-04-25parse `pub(restricted)` visibilities for struct fieldsJeffrey Seyfried-7/+38
2016-04-25Rollup merge of #33041 - petrochenkov:path, r=nrc,ManishearthManish Goregaokar-665/+401
2016-04-24Remove some old code from libsyntaxVadim Petrochenkov-59/+14
2016-04-24syntax: Make `is_path_start` precise and improve some error messages about un...Vadim Petrochenkov-35/+62
2016-04-24syntax: Check paths in visibilities for type parametersVadim Petrochenkov-83/+83
2016-04-24syntax: Merge keywords and remaining special idents in one listVadim Petrochenkov-162/+111
2016-04-24syntax: Don't parse idents with `parse_path`Vadim Petrochenkov-9/+12
2016-04-24syntax: Make static/super/self/Self keywords + special ident cleanupVadim Petrochenkov-148/+100
2016-04-24syntax: Get rid of token::IdentStyleVadim Petrochenkov-179/+107
2016-04-24syntax: Don't rely on token::IdentStyle in the parserVadim Petrochenkov-131/+53
2016-04-24thread tighter span for closures aroundNiko Matsakis-22/+52
2016-04-22Remove some useless code.Leo Testard-37/+15
2016-04-22Remove the MacroVisitor pass.Leo Testard-109/+51
2016-04-21add more confusable CJK square bracket aliasesWang Xuerui-0/+12
2016-04-21correct aliases for square bracketsWang Xuerui-6/+8
2016-04-21add confusable space charactersWang Xuerui-0/+17
2016-04-21Generate the features structure and arrays with new macros.Leo Testard-421/+196
2016-04-21Rewrite the feature-gate checks to use a structure instead of a list of strings.Leo Testard-223/+411
2016-04-21add more characters easily inputtable with CJK IMEsWang Xuerui-0/+16
2016-04-21pacify the merciless acrichto (somewhat)Niko Matsakis-8/+6
2016-04-21port compiletest to use JSON outputNiko Matsakis-122/+226
2016-04-17Rollup merge of #33044 - petrochenkov:prefix, r=eddybManish Goregaokar-111/+63
2016-04-16Auto merge of #32909 - sanxiyn:unused-trait-import-2, r=alexcrichtonbors-7/+0
2016-04-17syntax: Parse import prefixes as pathsVadim Petrochenkov-111/+63
2016-04-16Auto merge of #32875 - jseyfried:1422_implementation, r=nikomatsakisbors-23/+50
2016-04-16Rollup merge of #32945 - durka:rfc1494, r=pnkfelixManish Goregaokar-0/+1
2016-04-16Rollup merge of #32929 - LeoTestard:featureck-comment, r=GuillaumeGomezManish Goregaokar-2/+2
2016-04-16Rollup merge of #32923 - jseyfried:fix_hygiene, r=nrcManish Goregaokar-8/+9
2016-04-14Improve message for raw pointer missing mut and constDavid Tolnay-2/+2
2016-04-14Feature gate `pub(restricted)`Jeffrey Seyfried-0/+15
2016-04-14Parse `pub(restricted)`Jeffrey Seyfried-16/+25
2016-04-14Visit visibilities in the ast visitor's `walk_*` functionsJeffrey Seyfried-4/+7
2016-04-14Add a span to the `Crate` variant of `ast::Visibility`Jeffrey Seyfried-3/+3
2016-04-13implement RFC amendment 1494Alex Burka-0/+1
2016-04-13Update a comment to reflect changes in tidy checks.Leo Testard-2/+2
2016-04-13Fixes #32922, a macro hygiene bugJeffrey Seyfried-8/+9
2016-04-12Bare raw pointers have been disallowed foreverDavid Tolnay-3/+2
2016-04-12Remove unused trait importsSeo Sanghyeon-7/+0