bors[bot] 7a322f9aff
Merge #3392
3392: Implement concat eager macro  r=matklad a=edwin0cheng

This PR implements the following things:

1. Add basic eager macro infrastructure by introducing `EagerCallId` such that the new `MacroCallId` is defined as :

```
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum MacroCallId {
    LazyMacro(LazyMacroId),
    EagerMacro(EagerMacroId),
}
```

2. Add `concat!` builtin macro.




Co-authored-by: Edwin Cheng <edwin0cheng@gmail.com>
2020-03-03 17:30:08 +00:00
..
2020-03-03 17:03:46 +01:00
2020-03-02 11:52:46 -05:00
2020-02-18 16:12:40 +02:00
2020-03-03 18:22:52 +01:00
2020-03-04 01:21:14 +08:00
2020-03-04 01:24:33 +08:00
2020-03-04 01:21:14 +08:00
2020-03-03 18:22:52 +01:00
2020-03-03 18:22:52 +01:00
2020-03-04 01:21:14 +08:00
2020-02-27 14:04:13 +09:00
2020-03-04 01:21:14 +08:00
2020-02-27 14:04:13 +09:00
2020-02-18 16:12:40 +02:00
2020-03-02 14:05:44 -05:00
2020-02-27 10:06:48 +08:00