Flutter Engine
The Flutter Engine
Classes | Namespaces | Macros
token.h File Reference
#include "platform/assert.h"
#include "vm/allocation.h"

Go to the source code of this file.

Classes

class  dart::Token
 

Namespaces

namespace  dart
 

Macros

#define DART_TOKEN_LIST(TOK)
 
#define DART_KEYWORD_LIST(KW)
 
#define T(t, s, p, a)   t,
 
#define TOK_CASE(t, s, p, a)
 

Macro Definition Documentation

◆ DART_KEYWORD_LIST

#define DART_KEYWORD_LIST (   KW)

Definition at line 159 of file token.h.

◆ DART_TOKEN_LIST

#define DART_TOKEN_LIST (   TOK)

Definition at line 34 of file token.h.

◆ T

#define T (   t,
  s,
  p,
  a 
)    t,

Definition at line 214 of file token.h.

◆ TOK_CASE

#define TOK_CASE (   t,
  s,
  p,
  a 
)
Value:
if (strcmp(str, tok_str_[(t)]) == 0) { \
*out = (t); \
return true; \
}