File: assign.lex

package info (click to toggle)
dynare 4.4.3-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,356 kB
  • ctags: 15,842
  • sloc: cpp: 77,029; ansic: 29,056; pascal: 13,241; sh: 4,811; objc: 3,061; yacc: 3,013; makefile: 1,479; lex: 1,258; python: 162; lisp: 54; xml: 8
file content (54 lines) | stat: -rw-r--r-- 794 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
%{
#include "location.h"
#include "assign_tab.hh"

	extern YYLTYPE asgn_lloc;

#define YY_USER_ACTION SET_LLOC(asgn_);
%}

%option nounput
%option noyy_top_state
%option stack
%option yylineno
%option prefix="asgn_"
%option never-interactive
%x CMT

%%

 /* comments */
<*>"/*"            {yy_push_state(CMT);}
<CMT>[^*\n]*
<CMT>"*"+[^*/\n]*
<CMT>"*"+"/"       {yy_pop_state();}
<CMT>[\n]
"//".*\n

 /* spaces */
[ \t\r\n]          {return BLANK;}

 /* names */
[A-Za-z_][A-Za-z0-9_]* {
	asgn_lval.string = asgn_text;
	return NAME;
}

;                  {return SEMICOLON;}
=                  {return EQUAL_SIGN;}
. {
	asgn_lval.character = asgn_text[0];
	return CHARACTER;
}

%%

int asgn_wrap()
{
	return 1;
}

void asgn__destroy_buffer(void* p)
{
	asgn__delete_buffer((YY_BUFFER_STATE)p);
}