代码搜索:SIMPLEC

找到约 51 项符合「SIMPLEC」的源代码

代码结果 51
www.eeworm.com/read/375442/9360075

f simplec.f

$DEBUG **************************************************************************** *----------------------------MAIN PROGRAM----------------------------------- ************************************
www.eeworm.com/read/232140/14207591

pdf simplec.pdf

www.eeworm.com/read/123857/14608739

c simplec.c

#include #include #include #include #include int main( void ) { struct sockaddr_in peer; int s; int rc; char buf[ 1 ]; peer.s
www.eeworm.com/read/183674/5252898

g simplec.g

grammar SimpleC; options { language=ObjC; } program : declaration+ ; /** In this rule, the functionHeader left prefix on the last two * alternatives is not LL(k) for a fixed k. Howeve
www.eeworm.com/read/183674/5252902

tokens simplec.tokens

INT=5 WS=6 ID=4 '
www.eeworm.com/read/183674/5252907

g simplec.g

grammar SimpleC; options { output=AST; language=ObjC; } tokens { VAR_DEF; ARG_DEF; FUNC_HDR; FUNC_DECL; FUNC_DEF; BLOCK; } program : declaration+ ; declara
www.eeworm.com/read/183674/5252915

tokens simplec.tokens

FUNC_DEF=8 WS=20 CHAR=15 EQ=11 FUNC_HDR=6 LT=18 ARG_DEF=5 EQEQ=17 BLOCK=9 INT=12 VOID=16 FOR=13 PLUS=19 FUNC_DECL=7 INT_TYPE=14 VAR_DEF=4 ID=10 '
www.eeworm.com/read/338546/3315054

g simplec.g

grammar SimpleC; options { language=ObjC; } program : declaration+ ; /** In this rule, the functionHeader left prefix on the last two * alternatives is not LL(k) for a fixed k. Howeve
www.eeworm.com/read/338546/3315058

gl simplec__.gl

lexer grammar SimpleC; options { language=ObjC; } T7 : ';' ; T8 : '(' ; T9 : ',' ; T10 : ')' ; T11 : 'int' ; T12 : 'char' ; T13 : 'void' ; T14 : '{' ; T15 : '}' ; T16 : 'for' ; T17 : '=' ; T18 : '
www.eeworm.com/read/338546/3315059

tokens simplec.tokens

INT=5 WS=6 ID=4 '