Fix custom attribute thing

Upon updating rust version, the unrestricted_attribute_token thing
broke, but I'm changing this anyway so whatever
This commit is contained in:
greg 2019-03-12 01:05:10 -07:00
parent 58b37e56ae
commit 42aa316a23
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#![feature(trace_macros)]
#![feature(custom_attribute)]
#![feature(unrestricted_attribute_tokens)]
//#![feature(unrestricted_attribute_tokens)]
#![feature(slice_patterns, box_patterns, box_syntax)]
//! `schala-lang` is where the Schala programming language is actually implemented.
@ -47,8 +47,8 @@ mod eval;
#[LanguageName = "Schala"]
#[SourceFileExtension = "schala"]
#[PipelineSteps(load_source, tokenizing, parsing(compact,expanded,trace), symbol_table, typechecking, ast_reducing, eval)]
#[DocMethod = get_doc]
#[HandleCustomInterpreterDirectives = handle_custom_interpreter_directives]
#[DocMethod = "get_doc"]
#[HandleCustomInterpreterDirectives = "handle_custom_interpreter_directives"]
/// All bits of state necessary to parse and execute a Schala program are stored in this struct.
/// `state` represents the execution state for the AST-walking interpreter, the other fields
/// should be self-explanatory.