Server IP : 85.214.239.14 / Your IP : 3.142.131.51 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/proc/self/root/usr/share/doc/re2c/examples/go/reuse/ |
Upload File : |
// Code generated by re2c, DO NOT EDIT. //line "go/reuse/usedir.re":1 //go:generate re2go $INPUT -o $OUTPUT package main // This example shows how to combine reusable re2c blocks: two blocks // ('colors' and 'fish') are merged into one. The 'salmon' rule occurs // in both blocks; the 'fish' block takes priority because it is used // earlier. Default rule * occurs in all three blocks; the local (not // inherited) definition takes priority. const ( Color = iota Fish Dunno ) //line "go/reuse/usedir.re":19 //line "go/reuse/usedir.re":24 func lex(str string) int { var cur, mar int //line "go/reuse/usedir.go":28 { var yych byte yych = str[cur] switch (yych) { case 'e': goto yy3 case 'h': goto yy4 case 'm': goto yy5 case 'r': goto yy6 case 's': goto yy7 default: goto yy1 } yy1: cur += 1 yy2: //line "go/reuse/usedir.re":38 { return Dunno } //line "go/reuse/usedir.go":51 yy3: cur += 1 mar = cur yych = str[cur] switch (yych) { case 'e': goto yy8 default: goto yy2 } yy4: cur += 1 mar = cur yych = str[cur] switch (yych) { case 'a': goto yy10 default: goto yy2 } yy5: cur += 1 mar = cur yych = str[cur] switch (yych) { case 'a': goto yy11 default: goto yy2 } yy6: cur += 1 mar = cur yych = str[cur] switch (yych) { case 'e': goto yy12 default: goto yy2 } yy7: cur += 1 mar = cur yych = str[cur] switch (yych) { case 'a': goto yy13 default: goto yy2 } yy8: cur += 1 yych = str[cur] switch (yych) { case 'l': goto yy14 default: goto yy9 } yy9: cur = mar goto yy2 yy10: cur += 1 yych = str[cur] switch (yych) { case 'd': goto yy15 default: goto yy9 } yy11: cur += 1 yych = str[cur] switch (yych) { case 'g': goto yy16 default: goto yy9 } yy12: cur += 1 yych = str[cur] switch (yych) { case 'd': goto yy17 default: goto yy9 } yy13: cur += 1 yych = str[cur] switch (yych) { case 'l': goto yy18 default: goto yy9 } yy14: cur += 1 //line "go/reuse/usedir.re":23 { return Fish } //line "go/reuse/usedir.go":154 yy15: cur += 1 yych = str[cur] switch (yych) { case 'd': goto yy19 default: goto yy9 } yy16: cur += 1 yych = str[cur] switch (yych) { case 'e': goto yy20 default: goto yy9 } yy17: cur += 1 //line "go/reuse/usedir.re":18 { return Color } //line "go/reuse/usedir.go":177 yy18: cur += 1 yych = str[cur] switch (yych) { case 'm': goto yy21 default: goto yy9 } yy19: cur += 1 yych = str[cur] switch (yych) { case 'o': goto yy22 default: goto yy9 } yy20: cur += 1 yych = str[cur] switch (yych) { case 'n': goto yy23 default: goto yy9 } yy21: cur += 1 yych = str[cur] switch (yych) { case 'o': goto yy24 default: goto yy9 } yy22: cur += 1 yych = str[cur] switch (yych) { case 'c': goto yy25 default: goto yy9 } yy23: cur += 1 yych = str[cur] switch (yych) { case 't': goto yy26 default: goto yy9 } yy24: cur += 1 yych = str[cur] switch (yych) { case 'n': goto yy14 default: goto yy9 } yy25: cur += 1 yych = str[cur] switch (yych) { case 'k': goto yy14 default: goto yy9 } yy26: cur += 1 yych = str[cur] switch (yych) { case 'a': goto yy17 default: goto yy9 } } //line "go/reuse/usedir.re":39 } func main() { assert_eq := func(x, y int) { if x != y { panic("error") } } assert_eq(lex("salmon"), Fish); assert_eq(lex("what?"), Dunno); }