2017-03-30 23:08:33 -05:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// no-prefer-dynamic
|
|
|
|
|
|
|
|
#![feature(proc_macro)]
|
|
|
|
#![crate_type = "proc-macro"]
|
|
|
|
|
|
|
|
extern crate proc_macro;
|
|
|
|
|
2017-06-04 20:41:33 -05:00
|
|
|
use proc_macro::{TokenStream, TokenNode, OpKind, Literal, quote};
|
2017-03-30 23:08:33 -05:00
|
|
|
|
|
|
|
#[proc_macro]
|
|
|
|
pub fn count_compound_ops(input: TokenStream) -> TokenStream {
|
|
|
|
assert_eq!(count_compound_ops_helper(quote!(++ (&&) 4@a)), 3);
|
2017-06-04 20:41:33 -05:00
|
|
|
TokenNode::Literal(Literal::u32(count_compound_ops_helper(input))).into()
|
2017-03-30 23:08:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn count_compound_ops_helper(input: TokenStream) -> u32 {
|
|
|
|
let mut count = 0;
|
|
|
|
for token in input {
|
|
|
|
match token.kind {
|
2017-06-04 20:41:33 -05:00
|
|
|
TokenNode::Op(c, OpKind::Alone) => count += 1,
|
|
|
|
TokenNode::Sequence(_, tokens) => count += count_compound_ops_helper(tokens),
|
2017-03-30 23:08:33 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
count
|
|
|
|
}
|