mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@2 f3766cd6-281f-0410-b1cd-43a5c92072e9
38 lines
446 B
Text
38 lines
446 B
Text
/* regexps for lexing comments are.. tricky. Check if we've actually
|
|
* got it right */
|
|
|
|
/ {
|
|
// line comment
|
|
prop1;
|
|
/* comment */
|
|
prop2;
|
|
/* multiline
|
|
|
|
notaprop1;
|
|
|
|
comment */
|
|
prop3;
|
|
/**/
|
|
prop4;
|
|
/***/
|
|
prop5;
|
|
/****/
|
|
prop6;
|
|
/* another
|
|
* multiline
|
|
* comment */
|
|
prop7;
|
|
/* yet
|
|
* another
|
|
* multline
|
|
* comment
|
|
*/
|
|
prop8;
|
|
/** try this */
|
|
prop9;
|
|
/* and this **/
|
|
prop10;
|
|
child /* finally */ {
|
|
};
|
|
};
|
|
/* final comment */
|