mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 09:52:57 +03:00
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
/** Tokens that can appear in the stream. */
|
|
var tokens = {
|
|
/** Open parenthesis. */
|
|
'(': {
|
|
/** Executed before the token is processed. */
|
|
before: function(token) {},
|
|
/** Executed after the token is processed. */
|
|
after: function(token) {}
|
|
}
|
|
};
|