about summary refs log tree commit diff
path: root/src/libsyntax/feature_gate.rs
AgeCommit message (Expand)AuthorLines
2015-02-25Whitelist #[should_panic]Steven Fackler-0/+1
2015-02-25Turn `unsafe_no_drop_flag` back into a gated-feature.Felix S. Klock II-1/+3
2015-02-24Implement `<T>::method` UFCS expression syntax.Eduard Burtescu-1/+1
2015-02-24syntax: don't store a secondary NodeId for TyPath.Eduard Burtescu-1/+1
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-11/+11
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-11/+11
2015-02-18For now, accept the `i`, `u`, `is`, and `us` suffixes, but warn whenNiko Matsakis-4/+4
2015-02-17Rollup merge of #22383 - pnkfelix:pass-features-along-during-expansion, r=huonwManish Goregaokar-11/+42
2015-02-17Add gating for rustc_* attrsManish Goregaokar-13/+30
2015-02-17move other attribute check to visit_attributeManish Goregaokar-20/+10
2015-02-17Add `Gated` attribute typeManish Goregaokar-28/+28
2015-02-16Clean up visit_attribute in feature_gate.rsManish Goregaokar-37/+26
2015-02-16Feature gate custom attributes (fixes #22203)Manish Goregaokar-0/+54
2015-02-16Move ATTRIBUTE_WHITELIST and CRATE_ATTRS to KNOWN_ATTRIBUTES in syntax::featu...Manish Goregaokar-0/+69
2015-02-16Address the other cases of #22234; fix #22234.Felix S. Klock II-6/+32
2015-02-15Address the `asm!` case of #22234.Felix S. Klock II-5/+10
2015-02-15Rollup merge of #22277 - pnkfelix:reference-update-feature-gate-list, r=steve...Manish Goregaokar-0/+1
2015-02-13Added all active features to the list in reference.md.Felix S. Klock II-0/+1
2015-02-13Re-tag `slicing_syntax` as `Accepted`.Felix S. Klock II-1/+1
2015-02-11rollup merge of #22178: pnkfelix/featuregate-unsafe-no-drop-flagAlex Crichton-0/+10
2015-02-11Generalize all error messages with "experimental in alpha release" toFelix S. Klock II-1/+1
2015-02-11Feature-gate the `#[unsafe_no_drop_flag]` attribute.Felix S. Klock II-0/+10
2015-02-11generalize error text to not focus on any particular release.Felix S. Klock II-1/+1
2015-02-11Add `box_patterns` feature gate.Felix S. Klock II-1/+4
2015-02-09Use a crate attribute to load pluginsKeegan McAllister-5/+5
2015-02-07Feature-gate #![no_std]Keegan McAllister-1/+9
2015-02-07Auto merge of #21505 - GuillaumeGomez:interned_string, r=alexcrichtonbors-2/+3
2015-02-06Libsyntax has been updatedGuillaumeGomez-3/+3
2015-02-06Replace the get method by the deref one on InternedStringGuillaumeGomez-2/+3
2015-02-06Rollup merge of #21958 - brson:stable-features, r=alexcrichtonManish Goregaokar-5/+10
2015-02-06Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnikManish Goregaokar-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-2/+2
2015-02-04Add a lint for writing `#[feature]` for stable features, warn by default.Brian Anderson-5/+10
2015-02-04Fix for misspelled comments.Joseph Crail-1/+1
2015-02-04Add unmarked_api feature (fixes #21884)Manish Goregaokar-0/+6
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-3/+3
2015-01-30Test fixes and rebase conflictsAlex Crichton-1/+1
2015-01-29Feature gate macro_reexport. Fixes #20906Flavio Percoco-0/+7
2015-01-26Make '-A warnings' apply to all warnings, including feature gate warningsBrian Anderson-3/+5
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-20/+9
2015-01-22Put #[staged_api] behind the 'staged_api' gateBrian Anderson-0/+8
2015-01-21Add a lint for library featuresBrian Anderson-64/+77
2015-01-21Tie stability attributes to feature gatesBrian Anderson-13/+19
2015-01-21syntax: fix fallout of merging ast::ViewItem into ast::Item.Eduard Burtescu-16/+8
2015-01-21Remove feature(import_shadowing).Eduard Burtescu-4/+1
2015-01-20Auto merge of #21257 - alexcrichton:issue-20064, r=pnkfelixbors-0/+14
2015-01-17Feature gate SIMD in FFI, due to unknown ABIs.Huon Wilson-0/+4
2015-01-16syntax: Feature gate #[start] and #[main]Alex Crichton-0/+14
2015-01-12Feature gate #[rustc_on_unimplemented]Manish Goregaokar-0/+5
2015-01-08rollup merge of #20754: nikomatsakis/int-featureAlex Crichton-0/+55