Files
android_kernel_xiaomi_sm8450/scripts
Masahiro Yamada c3d228713b kconfig: use specific tokens instead of T_ASSIGN for assignments
Currently, the lexer returns T_ASSIGN for all of =, :=, and +=
associating yylval with the flavor.

I want to make the generated lexer as simple as possible. So, the
lexer should convert keywords to tokens without thinking about the
meaning.

   =  ->  T_EQUAL
  :=  ->  T_COLON_EQUAL
  +=  ->  T_PLUS_EQUAL

Unfortunately, Kconfig uses = instead of == for the equal operator.
So, the same token T_EQUAL is used for assignment and comparison.
The parser can still distinguish them from the context.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-12-22 00:25:52 +09:00
..
2018-10-04 14:16:15 -05:00
2017-03-28 16:16:52 +02:00
2012-06-27 12:44:29 -07:00
2018-11-02 22:49:01 +09:00
2018-02-06 18:32:47 -08:00
2014-08-20 16:03:45 +02:00