403Webshell
Server IP : 192.158.238.246  /  Your IP : 18.216.137.32
Web Server : LiteSpeed
System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
User : jenniferflocom ( 1321)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/alt/python37/lib/python3.7/site-packages/pycparser/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/alt/python37/lib/python3.7/site-packages/pycparser/__pycache__/c_parser.cpython-37.pyc
B

�>�`��@s�ddlZddlmZddlmZddlmZddlmZm	Z	m
Z
ddlmZGdd	�d	e�Z
ed
kr|ddlZddlZddlZdS)�N)�yacc�)�c_ast)�CLexer)�	PLYParser�Coord�
ParseError)�fix_switch_casesc@seZdZ�d1dd�Z�d2d	d
�Zdd�Zd
d�Zdd�Zdd�Zdd�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd �Zd!d"�Zd#d$�Z�d3d%d&�Zd'd(�Zd)d*�Zd+Zd,d-�Zd.d/�Zd0d1�Zd2d3�Zd4d5�Zd6d7�Zd8d9�Zd:d;�Zd<d=�Zd>d?�Zd@dA�Z dBdC�Z!dDdE�Z"dFdG�Z#dHdI�Z$dJdK�Z%dLdM�Z&dNdO�Z'dPdQ�Z(dRdS�Z)dTdU�Z*dVdW�Z+dXdY�Z,dZd[�Z-d\d]�Z.d^d_�Z/d`da�Z0dbdc�Z1ddde�Z2dfdg�Z3dhdi�Z4djdk�Z5dldm�Z6dndo�Z7dpdq�Z8drds�Z9dtdu�Z:dvdw�Z;dxdy�Z<dzd{�Z=d|d}�Z>d~d�Z?d�d��Z@d�d��ZAd�d��ZBd�d��ZCd�d��ZDd�d��ZEd�d��ZFd�d��ZGd�d��ZHd�d��ZId�d��ZJd�d��ZKd�d��ZLd�d��ZMd�d��ZNd�d��ZOd�d��ZPd�d��ZQd�d��ZRd�d��ZSd�d��ZTd�d��ZUd�d��ZVd�d��ZWd�d��ZXd�d��ZYd�d��ZZd�d��Z[d�d��Z\d�d��Z]d�d��Z^d�d��Z_d�d��Z`d�dÄZad�dńZbd�dDŽZcd�dɄZdd�d˄Zed�d̈́Zfd�dτZgd�dфZhd�dӄZid�dՄZjd�dׄZkd�dلZld�dۄZmd�d݄Znd�d߄Zod�d�Zpd�d�Zqd�d�Zrd�d�Zsd�d�Ztd�d�Zud�d�Zvd�d�Zwd�d�Zxd�d�Zyd�d��Zzd�d��Z{d�d��Z|d�d��Z}d�d��Z~d�d��Z�d�d�Z��d�d�Z��d�d�Z��d�d�Z��d�d	�Z��d
�d�Z��d�d
�Z��d�d�Z��d�d�Z��d�d�Z��d�d�Z��d�d�Z��d�d�Z��d�d�Z��d�d�Z��d�d�Z��d �d!�Z��d"�d#�Z��d$�d%�Z��d&�d'�Z��d(�d)�Z��d*�d+�Z��d,�d-�Z��d.�d/�Z��d0S(4�CParserT�pycparser.lextab�pycparser.yacctabF�c	Cs�t|j|j|j|jd�|_|jj|||d�|jj|_ddddddd	d
ddd
dddg}x|D]}|�|�q\Wt	j	|d||||d�|_
t�g|_d|_
dS)a� Create a new CParser.

            Some arguments for controlling the debug/optimization
            level of the parser are provided. The defaults are
            tuned for release/performance mode.
            The simple rules for using them are:
            *) When tweaking CParser/CLexer, set these to False
            *) When releasing a stable parser, set to True

            lex_optimize:
                Set to False when you're modifying the lexer.
                Otherwise, changes in the lexer won't be used, if
                some lextab.py file exists.
                When releasing with a stable lexer, set to True
                to save the re-generation of the lexer table on
                each run.

            lextab:
                Points to the lex table that's used for optimized
                mode. Only if you're modifying the lexer and want
                some tests to avoid re-generating the table, make
                this point to a local lex table file (that's been
                earlier generated with lex_optimize=True)

            yacc_optimize:
                Set to False when you're modifying the parser.
                Otherwise, changes in the parser won't be used, if
                some parsetab.py file exists.
                When releasing with a stable parser, set to True
                to save the re-generation of the parser table on
                each run.

            yacctab:
                Points to the yacc table that's used for optimized
                mode. Only if you're modifying the parser, make
                this point to a local yacc table file

            yacc_debug:
                Generate a parser.out file that explains how yacc
                built the parsing table from the grammar.

            taboutputdir:
                Set this parameter to control the location of generated
                lextab and yacctab files.
        )Z
error_funcZon_lbrace_funcZon_rbrace_funcZtype_lookup_func)�optimize�lextab�	outputdirZabstract_declaratorZassignment_expressionZdeclaration_listZdeclaration_specifiersZdesignationZ
expressionZidentifier_listZinit_declarator_listZinitializer_listZparameter_type_listZspecifier_qualifier_listZblock_item_listZtype_qualifier_listZstruct_declarator_listZtranslation_unit_or_empty)�module�start�debugrZ	tabmodulerN)r�_lex_error_func�_lex_on_lbrace_func�_lex_on_rbrace_func�_lex_type_lookup_func�clexZbuild�tokensZ_create_opt_ruler�cparser�dict�_scope_stack�_last_yielded_token)	�self�lex_optimizer�
yacc_optimize�yacctab�
yacc_debugZtaboutputdirZrules_with_optZrule�r#�../pycparser/c_parser.py�__init__sF5




zCParser.__init__rcCs6||j_|j��t�g|_d|_|jj||j|d�S)a& Parses C code and returns an AST.

            text:
                A string containing the C source code

            filename:
                Name of the file being parsed (for meaningful
                error messages)

            debuglevel:
                Debug level to yacc
        N)�inputZlexerr)r�filenameZreset_linenorrrr�parse)r�textr'Z
debuglevelr#r#r$r(~s


z
CParser.parsecCs|j�t��dS)N)r�appendr)rr#r#r$�_push_scope�szCParser._push_scopecCs t|j�dkst�|j��dS)Nr)�lenr�AssertionError�pop)rr#r#r$�
_pop_scope�szCParser._pop_scopecCs4|jd�|d�s"|�d||�d|jd|<dS)zC Add a new typedef name (ie a TYPEID) to the current scope
        ���Tz;Typedef %r previously declared as non-typedef in this scopeN)r�get�_parse_error)r�name�coordr#r#r$�_add_typedef_name�s

zCParser._add_typedef_namecCs4|jd�|d�r"|�d||�d|jd|<dS)ze Add a new object, function, or enum member name (ie an ID) to the
            current scope
        r0Fz;Non-typedef %r previously declared as typedef in this scopeN)rr1r2)rr3r4r#r#r$�_add_identifier�s

zCParser._add_identifiercCs.x(t|j�D]}|�|�}|dk	r|SqWdS)z8 Is *name* a typedef-name in the current scope?
        NF)�reversedrr1)rr3ZscopeZin_scoper#r#r$�_is_type_in_scope�s

zCParser._is_type_in_scopecCs|�||�||��dS)N)r2�_coord)r�msg�line�columnr#r#r$r�szCParser._lex_error_funccCs|��dS)N)r+)rr#r#r$r�szCParser._lex_on_lbrace_funccCs|��dS)N)r/)rr#r#r$r�szCParser._lex_on_rbrace_funccCs|�|�}|S)z� Looks up types that were previously defined with
            typedef.
            Passed to the lexer for recognizing identifiers that
            are types.
        )r8)rr3Zis_typer#r#r$r�s
zCParser._lex_type_lookup_funccCs|jjS)z� We need access to yacc's lookahead token in certain cases.
            This is the last token yacc requested from the lexer, so we
            ask the lexer.
        )rZ
last_token)rr#r#r$�_get_yacc_lookahead_token�sz!CParser._get_yacc_lookahead_tokencCsd|}|}x|jr|j}q
Wt|tj�r0||_|S|}xt|jtj�sL|j}q6W|j|_||_|SdS)z� Tacks a type modifier on a declarator, and returns
            the modified declarator.

            Note: the declarator and modifier may be modified
        N)�type�
isinstancer�TypeDecl)r�decl�modifierZ
modifier_headZ
modifier_tailZ	decl_tailr#r#r$�_type_modify_decl�s

zCParser._type_modify_declcCs�|}xt|tj�s|j}qW|j|_|j|_x>|D]6}t|tj�s2t|�dkr^|�	d|j
�q2||_|Sq2W|s�t|jtj�s�|�	d|j
�tjdg|j
d�|_n tjdd�|D�|dj
d�|_|S)	z- Fixes a declaration. Modifies decl.
        rz Invalid multiple types specifiedzMissing type in declaration�int)r4cSsg|]}|jD]}|�qqSr#)�names)�.0�idr3r#r#r$�
<listcomp>Usz/CParser._fix_decl_name_type.<locals>.<listcomp>r)r?rr@r>�declnamer3�quals�IdentifierTyper,r2r4�FuncDecl)rrA�typenamer>Ztnr#r#r$�_fix_decl_name_type,s.


zCParser._fix_decl_name_typecCs(|ptggggd�}||�d|�|S)a� Declaration specifiers are represented by a dictionary
            with the entries:
            * qual: a list of type qualifiers
            * storage: a list of storage type qualifiers
            * type: a list of type specifiers
            * function: a list of function specifiers

            This method is given a declaration specifier, and a
            new specifier of a given kind.
            Returns the declaration specifier, with the new
            specifier incorporated.
        )�qual�storager>�functionr)r�insert)rZdeclspecZnewspecZkind�specr#r#r$�_add_declaration_specifierYs
z"CParser._add_declaration_specifiercCsPd|dk}g}|d�d�dk	r&�n2|dddkr�t|d�dkstt|dd	j�d
kst|�|dd	jd�s�d}x"|dD]}t|d�r�|j}Pq�W|�d
|�tj|dd	jddd|dd	jd�|dd<|dd	=nrt	|ddtj
tjtjf��sX|dd}xt	|tj��s,|j
}�qW|jdk�rX|dd	jd|_|dd	=x�|D]�}	|	ddk	�stt�|�r�tjd|d|d|	d|	djd�}
n<tjd|d|d|d|	d|	�d�|	�d�|	djd�}
t	|
j
tj
tjtjf��r�|
}n|�|
|d�}|�r<|�r,|�|j|j�n|�|j|j�|�|��q^W|S)z� Builds a list of declarations all sharing the given specifiers.
            If typedef_namespace is true, each declared name is added
            to the "typedef namespace", which also includes objects,
            functions, and enum constants.
        �typedefrPr�bitsizeNrAr>�r0r�?r4zInvalid declaration)rIr>rJr4rO)r3rJrPr>r4rQ�init)r3rJrP�funcspecr>rYrVr4)r1r,rEr8�hasattrr4r2rr@r?�Struct�UnionrKr>rIr-ZTypedef�DeclrNr5r3r6r*)rrS�decls�typedef_namespaceZ
is_typedefZdeclarationsr4�tZdecls_0_tailrA�declarationZ
fixed_declr#r#r$�_build_declarationsjsn&


zCParser._build_declarationscCsBd|dkst�|j|t|dd�gdd�d}tj||||jd�S)	z' Builds a function definition.
        rUrPN)rArYT)rSr_r`r)rA�param_decls�bodyr4)r-rcrrZFuncDefr4)rrSrArdrerbr#r#r$�_build_function_definition�sz"CParser._build_function_definitioncCs|dkrtjStjSdS)z` Given a token (either STRUCT or UNION), selects the
            appropriate AST class.
        ZstructN)rr\r])r�tokenr#r#r$�_select_struct_union_class�sz"CParser._select_struct_union_class)
)�leftZLOR)riZLAND)ri�OR)riZXOR)riZAND)riZEQZNE)riZGTZGEZLTZLE)riZRSHIFTZLSHIFT)ri�PLUS�MINUS)riZTIMESZDIVIDEZMODcCs2|ddkrt�g�|d<nt�|d�|d<dS)zh translation_unit_or_empty   : translation_unit
                                        | empty
        rNr)rZFileAST)r�pr#r#r$�p_translation_unit_or_empty�sz#CParser.p_translation_unit_or_emptycCs|d|d<dS)z4 translation_unit    : external_declaration
        rrNr#)rrmr#r#r$�p_translation_unit_1�szCParser.p_translation_unit_1cCs.|ddk	r|d�|d�|d|d<dS)zE translation_unit    : translation_unit external_declaration
        rWNrr)�extend)rrmr#r#r$�p_translation_unit_2szCParser.p_translation_unit_2cCs|dg|d<dS)z7 external_declaration    : function_definition
        rrNr#)rrmr#r#r$�p_external_declaration_1sz CParser.p_external_declaration_1cCs|d|d<dS)z/ external_declaration    : declaration
        rrNr#)rrmr#r#r$�p_external_declaration_2sz CParser.p_external_declaration_2cCs|d|d<dS)z0 external_declaration    : pp_directive
        rrNr#)rrmr#r#r$�p_external_declaration_3sz CParser.p_external_declaration_3cCsd|d<dS)z( external_declaration    : SEMI
        Nrr#)rrmr#r#r$�p_external_declaration_4sz CParser.p_external_declaration_4cCs|�d|�|�d���dS)z  pp_directive  : PPHASH
        zDirectives not supported yetrN)r2r9�lineno)rrmr#r#r$�p_pp_directive$szCParser.p_pp_directivec
CsPtggtjdg|�|�d��d�ggd�}|j||d|d|dd�|d<d	S)
zR function_definition : declarator declaration_list_opt compound_statement
        rDr)r4)rOrPr>rQrW�)rSrArdrerN)rrrKr9rvrf)rrmrSr#r#r$�p_function_definition_1-szCParser.p_function_definition_1cCs.|d}|j||d|d|dd�|d<dS)zi function_definition : declaration_specifiers declarator declaration_list_opt compound_statement
        rrWrx�)rSrArdrerN)rf)rrmrSr#r#r$�p_function_definition_2>szCParser.p_function_definition_2cCs|d|d<dS)a
 statement   : labeled_statement
                        | expression_statement
                        | compound_statement
                        | selection_statement
                        | iteration_statement
                        | jump_statement
        rrNr#)rrmr#r#r$�p_statementIszCParser.p_statementc
Cs�|d}|ddkr�|d}tjtjtjf}t|�dkrzt|d|�rztjd|d|d|d|ddd|djd	�g}q�|j|t	ddd
�gdd�}n|j||ddd�}||d<dS)
zE decl_body : declaration_specifiers init_declarator_list_opt
        rrWNr>rrOrPrQ)r3rJrPrZr>rYrVr4)rArYT)rSr_r`)
rr\r]�Enumr,r?r^r4rcr)rrmrSZtyZs_u_or_er_r#r#r$�p_decl_body\s.
zCParser.p_decl_bodycCs|d|d<dS)z& declaration : decl_body SEMI
        rrNr#)rrmr#r#r$�
p_declaration�szCParser.p_declarationcCs,t|�dkr|dn|d|d|d<dS)zj declaration_list    : declaration
                                | declaration_list declaration
        rWrrN)r,)rrmr#r#r$�p_declaration_list�szCParser.p_declaration_listcCs|�|d|dd�|d<dS)zM declaration_specifiers  : type_qualifier declaration_specifiers_opt
        rWrrOrN)rT)rrmr#r#r$�p_declaration_specifiers_1�sz"CParser.p_declaration_specifiers_1cCs|�|d|dd�|d<dS)zM declaration_specifiers  : type_specifier declaration_specifiers_opt
        rWrr>rN)rT)rrmr#r#r$�p_declaration_specifiers_2�sz"CParser.p_declaration_specifiers_2cCs|�|d|dd�|d<dS)zV declaration_specifiers  : storage_class_specifier declaration_specifiers_opt
        rWrrPrN)rT)rrmr#r#r$�p_declaration_specifiers_3�sz"CParser.p_declaration_specifiers_3cCs|�|d|dd�|d<dS)zQ declaration_specifiers  : function_specifier declaration_specifiers_opt
        rWrrQrN)rT)rrmr#r#r$�p_declaration_specifiers_4�sz"CParser.p_declaration_specifiers_4cCs|d|d<dS)z� storage_class_specifier : AUTO
                                    | REGISTER
                                    | STATIC
                                    | EXTERN
                                    | TYPEDEF
        rrNr#)rrmr#r#r$�p_storage_class_specifier�sz!CParser.p_storage_class_specifiercCs|d|d<dS)z& function_specifier  : INLINE
        rrNr#)rrmr#r#r$�p_function_specifier�szCParser.p_function_specifiercCs(tj|dg|�|�d��d�|d<dS)a� type_specifier  : VOID
                            | _BOOL
                            | CHAR
                            | SHORT
                            | INT
                            | LONG
                            | FLOAT
                            | DOUBLE
                            | _COMPLEX
                            | SIGNED
                            | UNSIGNED
        r)r4rN)rrKr9rv)rrmr#r#r$�p_type_specifier_1�s
zCParser.p_type_specifier_1cCs|d|d<dS)z� type_specifier  : typedef_name
                            | enum_specifier
                            | struct_or_union_specifier
        rrNr#)rrmr#r#r$�p_type_specifier_2�szCParser.p_type_specifier_2cCs|d|d<dS)zo type_qualifier  : CONST
                            | RESTRICT
                            | VOLATILE
        rrNr#)rrmr#r#r$�p_type_qualifier�szCParser.p_type_qualifiercCs0t|�dkr|d|dgn|dg|d<dS)z� init_declarator_list    : init_declarator
                                    | init_declarator_list COMMA init_declarator
        rzrrxrN)r,)rrmr#r#r$�p_init_declarator_list_1�sz CParser.p_init_declarator_list_1cCstd|dd�g|d<dS)z6 init_declarator_list    : EQUALS initializer
        NrW)rArYr)r)rrmr#r#r$�p_init_declarator_list_2�sz CParser.p_init_declarator_list_2cCst|ddd�g|d<dS)z7 init_declarator_list    : abstract_declarator
        rN)rArYr)r)rrmr#r#r$�p_init_declarator_list_3�sz CParser.p_init_declarator_list_3cCs,t|dt|�dkr|dndd�|d<dS)zb init_declarator : declarator
                            | declarator EQUALS initializer
        rrWrxN)rArYr)rr,)rrmr#r#r$�p_init_declaratorszCParser.p_init_declaratorcCs|�|d|dd�|d<dS)zS specifier_qualifier_list    : type_qualifier specifier_qualifier_list_opt
        rWrrOrN)rT)rrmr#r#r$�p_specifier_qualifier_list_1sz$CParser.p_specifier_qualifier_list_1cCs|�|d|dd�|d<dS)zS specifier_qualifier_list    : type_specifier specifier_qualifier_list_opt
        rWrr>rN)rT)rrmr#r#r$�p_specifier_qualifier_list_2sz$CParser.p_specifier_qualifier_list_2cCs4|�|d�}||dd|�|�d��d�|d<dS)z{ struct_or_union_specifier   : struct_or_union ID
                                        | struct_or_union TYPEID
        rrWN)r3r_r4r)rhr9rv)rrm�klassr#r#r$�p_struct_or_union_specifier_1s
z%CParser.p_struct_or_union_specifier_1cCs4|�|d�}|d|d|�|�d��d�|d<dS)zd struct_or_union_specifier : struct_or_union brace_open struct_declaration_list brace_close
        rNrxrW)r3r_r4r)rhr9rv)rrmr�r#r#r$�p_struct_or_union_specifier_2s
z%CParser.p_struct_or_union_specifier_2cCs8|�|d�}||d|d|�|�d��d�|d<dS)z� struct_or_union_specifier   : struct_or_union ID brace_open struct_declaration_list brace_close
                                        | struct_or_union TYPEID brace_open struct_declaration_list brace_close
        rrWrz)r3r_r4rN)rhr9rv)rrmr�r#r#r$�p_struct_or_union_specifier_3&s
z%CParser.p_struct_or_union_specifier_3cCs|d|d<dS)zF struct_or_union : STRUCT
                            | UNION
        rrNr#)rrmr#r#r$�p_struct_or_union0szCParser.p_struct_or_unioncCs,t|�dkr|dn|d|d|d<dS)z� struct_declaration_list     : struct_declaration
                                        | struct_declaration_list struct_declaration
        rWrrN)r,)rrmr#r#r$�p_struct_declaration_list8sz!CParser.p_struct_declaration_listcCs�|d}d|dkst�|ddk	r8|j||dd�}nht|d�dkr�|dd}t|tj�rf|}n
t�|�}|j|t|d	�gd�}n|j|tddd
�gd�}||d<dS)zW struct_declaration : specifier_qualifier_list struct_declarator_list_opt SEMI
        rrUrPrWN)rSr_r>r)rA)rArY)r-rcr,r?rZNoderKr)rrmrSr_ZnodeZ	decl_typer#r#r$�p_struct_declaration_1>s$
zCParser.p_struct_declaration_1cCs(|j|dt|ddd�gd�|d<dS)zP struct_declaration : specifier_qualifier_list abstract_declarator SEMI
        rrWN)rArY)rSr_r)rcr)rrmr#r#r$�p_struct_declaration_2ds
zCParser.p_struct_declaration_2cCs0t|�dkr|d|dgn|dg|d<dS)z� struct_declarator_list  : struct_declarator
                                    | struct_declarator_list COMMA struct_declarator
        rzrrxrN)r,)rrmr#r#r$�p_struct_declarator_listrsz CParser.p_struct_declarator_listcCs|ddd�|d<dS)z( struct_declarator : declarator
        rN)rArVrr#)rrmr#r#r$�p_struct_declarator_1{szCParser.p_struct_declarator_1cCsDt|�dkr$|d|dd�|d<nt�ddd�|dd�|d<dS)z� struct_declarator   : declarator COLON constant_expression
                                | COLON constant_expression
        rxr)rArVrNrW)r,rr@)rrmr#r#r$�p_struct_declarator_2�szCParser.p_struct_declarator_2c	Cs&t�|dd|�|�d���|d<dS)zM enum_specifier  : ENUM ID
                            | ENUM TYPEID
        rWNrr)rr}r9rv)rrmr#r#r$�p_enum_specifier_1�szCParser.p_enum_specifier_1c	Cs&t�d|d|�|�d���|d<dS)zG enum_specifier  : ENUM brace_open enumerator_list brace_close
        Nrxrr)rr}r9rv)rrmr#r#r$�p_enum_specifier_2�szCParser.p_enum_specifier_2c	Cs*t�|d|d|�|�d���|d<dS)z� enum_specifier  : ENUM ID brace_open enumerator_list brace_close
                            | ENUM TYPEID brace_open enumerator_list brace_close
        rWrzrrN)rr}r9rv)rrmr#r#r$�p_enum_specifier_3�szCParser.p_enum_specifier_3cCsht|�dkr*t�|dg|dj�|d<n:t|�dkrD|d|d<n |dj�|d�|d|d<dS)z� enumerator_list : enumerator
                            | enumerator_list COMMA
                            | enumerator_list COMMA enumerator
        rWrrrxN)r,rZEnumeratorListr4Zenumeratorsr*)rrmr#r#r$�p_enumerator_list�szCParser.p_enumerator_listc	Csjt|�dkr,t�|dd|�|�d���}n"t�|d|d|�|�d���}|�|j|j�||d<dS)zR enumerator  : ID
                        | ID EQUALS constant_expression
        rWrNrxr)r,rZ
Enumeratorr9rvr6r3r4)rrmZ
enumeratorr#r#r$�p_enumerator�szCParser.p_enumeratorcCs|d|d<dS)z) declarator  : direct_declarator
        rrNr#)rrmr#r#r$�p_declarator_1�szCParser.p_declarator_1cCs|�|d|d�|d<dS)z1 declarator  : pointer direct_declarator
        rWrrN)rC)rrmr#r#r$�p_declarator_2�szCParser.p_declarator_2c	Cs:tj|ddd|�|�d��d�}|�||d�|d<dS)z& declarator  : pointer TYPEID
        rWN)rIr>rJr4rr)rr@r9rvrC)rrmrAr#r#r$�p_declarator_3�szCParser.p_declarator_3c	Cs*tj|ddd|�|�d��d�|d<dS)z" direct_declarator   : ID
        rN)rIr>rJr4r)rr@r9rv)rrmr#r#r$�p_direct_declarator_1�s
zCParser.p_direct_declarator_1cCs|d|d<dS)z8 direct_declarator   : LPAREN declarator RPAREN
        rWrNr#)rrmr#r#r$�p_direct_declarator_2�szCParser.p_direct_declarator_2cCsft|�dkr|dngpg}tjdt|�dkr6|dn|d||djd�}|j|d|d�|d<dS)	zu direct_declarator   : direct_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET
        �rxNrzr)r>�dim�	dim_qualsr4)rArBr)r,r�	ArrayDeclr4rC)rrmrJ�arrr#r#r$�p_direct_declarator_3�szCParser.p_direct_declarator_3cCs^dd�|d|dgD�}dd�|D�}tjd|d||djd	�}|j|d|d
�|d<dS)z� direct_declarator   : direct_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET
                                | direct_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET
        cSs g|]}t|t�r|n|g�qSr#)r?�list)rF�itemr#r#r$rH�sz1CParser.p_direct_declarator_4.<locals>.<listcomp>rxrzcSs"g|]}|D]}|dk	r|�qqS)Nr#)rFZsublistrOr#r#r$rH�s
Nr�r)r>r�r�r4)rArBr)rr�r4rC)rrmZlisted_qualsr�r�r#r#r$�p_direct_declarator_4�szCParser.p_direct_declarator_4c
Cs^tjdt�|d|�|�d���|ddkr4|dng|djd�}|j|d|d�|d<dS)za direct_declarator   : direct_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET
        Nrzrxr)r>r�r�r4)rArBr)rr��IDr9rvr4rC)rrmr�r#r#r$�p_direct_declarator_5szCParser.p_direct_declarator_5cCs|tj|dd|djd�}|��jdkrb|jdk	rbx.|jjD]"}t|tj�rNP|�	|j
|j�q<W|j|d|d�|d<dS)z� direct_declarator   : direct_declarator LPAREN parameter_type_list RPAREN
                                | direct_declarator LPAREN identifier_list_opt RPAREN
        rxNr)�argsr>r4�LBRACE)rArBr)rrLr4r=r>r��paramsr?�
EllipsisParamr6r3rC)rrm�funcZparamr#r#r$�p_direct_declarator_6s

zCParser.p_direct_declarator_6cCsr|�|�d��}tj|dpgd|d�}t|�dkrf|d}x|jdk	rP|j}q>W||_|d|d<n||d<dS)zm pointer : TIMES type_qualifier_list_opt
                    | TIMES type_qualifier_list_opt pointer
        rrWN)rJr>r4rxr)r9rvrZPtrDeclr,r>)rrmr4Znested_typeZ	tail_typer#r#r$�	p_pointer(s
zCParser.p_pointercCs0t|�dkr|dgn|d|dg|d<dS)zs type_qualifier_list : type_qualifier
                                | type_qualifier_list type_qualifier
        rWrrN)r,)rrmr#r#r$�p_type_qualifier_listFszCParser.p_type_qualifier_listc	Cs>t|�dkr.|dj�t�|�|�d����|d|d<dS)zn parameter_type_list : parameter_list
                                | parameter_list COMMA ELLIPSIS
        rWrrxrN)r,r�r*rr�r9rv)rrmr#r#r$�p_parameter_type_listLs"zCParser.p_parameter_type_listcCsNt|�dkr*t�|dg|dj�|d<n |dj�|d�|d|d<dS)zz parameter_list  : parameter_declaration
                            | parameter_list COMMA parameter_declaration
        rWrrrxN)r,r�	ParamListr4r�r*)rrmr#r#r$�p_parameter_listUszCParser.p_parameter_listcCsX|d}|ds2tjdg|�|�d��d�g|d<|j|t|dd�gd�d|d<d	S)
zE parameter_declaration   : declaration_specifiers declarator
        rr>rD)r4rW)rA)rSr_rN)rrKr9rvrcr)rrmrSr#r#r$�p_parameter_declaration_1_sz!CParser.p_parameter_declaration_1c	Cs�|d}|ds2tjdg|�|�d��d�g|d<t|d�dkr�t|ddj�dkr�|�|ddjd�r�|j|t|ddd	�gd
�d}nHtj	d|d|dp�t�
ddd�|�|�d��d
�}|d}|�||�}||d<dS)zR parameter_declaration   : declaration_specifiers abstract_declarator_opt
        rr>rD)r4r0rrWN)rArY)rSr_r
rO)r3rJr>r4)rrKr9rvr,rEr8rcr�Typenamer@rN)rrmrSrArMr#r#r$�p_parameter_declaration_2js"&z!CParser.p_parameter_declaration_2cCsNt|�dkr*t�|dg|dj�|d<n |dj�|d�|d|d<dS)ze identifier_list : identifier
                            | identifier_list COMMA identifier
        rWrrrxN)r,rr�r4r�r*)rrmr#r#r$�p_identifier_list�szCParser.p_identifier_listcCs|d|d<dS)z- initializer : assignment_expression
        rrNr#)rrmr#r#r$�p_initializer_1�szCParser.p_initializer_1cCs:|ddkr*t�g|�|�d���|d<n|d|d<dS)z� initializer : brace_open initializer_list_opt brace_close
                        | brace_open initializer_list COMMA brace_close
        rWNrr)r�InitListr9rv)rrmr#r#r$�p_initializer_2�szCParser.p_initializer_2cCs�t|�dkrN|ddkr |dnt�|d|d�}t�|g|dj�|d<nD|ddkrb|dnt�|d|d�}|dj�|�|d|d<dS)z� initializer_list    : designation_opt initializer
                                | initializer_list COMMA designation_opt initializer
        rxrNrWrrz)r,rZNamedInitializerr�r4�exprsr*)rrmrYr#r#r$�p_initializer_list�s((zCParser.p_initializer_listcCs|d|d<dS)z. designation : designator_list EQUALS
        rrNr#)rrmr#r#r$�
p_designation�szCParser.p_designationcCs0t|�dkr|dgn|d|dg|d<dS)z_ designator_list : designator
                            | designator_list designator
        rWrrN)r,)rrmr#r#r$�p_designator_list�szCParser.p_designator_listcCs|d|d<dS)zi designator  : LBRACKET constant_expression RBRACKET
                        | PERIOD identifier
        rWrNr#)rrmr#r#r$�p_designator�szCParser.p_designatorc	CsTtjd|dd|dp$t�ddd�|�|�d��d�}|�||dd�|d<dS)	zH type_name   : specifier_qualifier_list abstract_declarator_opt
        r
rrOrWN)r3rJr>r4r>r)rr�r@r9rvrN)rrmrMr#r#r$�p_type_name�s	
zCParser.p_type_namecCs(t�ddd�}|j||dd�|d<dS)z+ abstract_declarator     : pointer
        Nr)rArBr)rr@rC)rrmZ	dummytyper#r#r$�p_abstract_declarator_1�szCParser.p_abstract_declarator_1cCs|�|d|d�|d<dS)zF abstract_declarator     : pointer direct_abstract_declarator
        rWrrN)rC)rrmr#r#r$�p_abstract_declarator_2�szCParser.p_abstract_declarator_2cCs|d|d<dS)z> abstract_declarator     : direct_abstract_declarator
        rrNr#)rrmr#r#r$�p_abstract_declarator_3�szCParser.p_abstract_declarator_3cCs|d|d<dS)zA direct_abstract_declarator  : LPAREN abstract_declarator RPAREN rWrNr#)rrmr#r#r$�p_direct_abstract_declarator_1�sz&CParser.p_direct_abstract_declarator_1cCs6tjd|dg|djd�}|j|d|d�|d<dS)zn direct_abstract_declarator  : direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET
        Nrxr)r>r�r�r4)rArBr)rr�r4rC)rrmr�r#r#r$�p_direct_abstract_declarator_2�sz&CParser.p_direct_abstract_declarator_2c	Cs4tjt�ddd�|dg|�|�d��d�|d<dS)zS direct_abstract_declarator  : LBRACKET assignment_expression_opt RBRACKET
        NrWr)r>r�r�r4r)rr�r@r9rv)rrmr#r#r$�p_direct_abstract_declarator_3�s
z&CParser.p_direct_abstract_declarator_3c
CsJtjdt�|d|�|�d���g|djd�}|j|d|d�|d<dS)zZ direct_abstract_declarator  : direct_abstract_declarator LBRACKET TIMES RBRACKET
        Nrxr)r>r�r�r4)rArBr)rr�r�r9rvr4rC)rrmr�r#r#r$�p_direct_abstract_declarator_4sz&CParser.p_direct_abstract_declarator_4c
CsHtjt�ddd�t�|d|�|�d���g|�|�d��d�|d<dS)z? direct_abstract_declarator  : LBRACKET TIMES RBRACKET
        Nrxr)r>r�r�r4r)rr�r@r�r9rv)rrmr#r#r$�p_direct_abstract_declarator_5s
z&CParser.p_direct_abstract_declarator_5cCs4tj|dd|djd�}|j|d|d�|d<dS)zh direct_abstract_declarator  : direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN
        rxNr)r�r>r4)rArBr)rrLr4rC)rrmr�r#r#r$�p_direct_abstract_declarator_6s
z&CParser.p_direct_abstract_declarator_6cCs2tj|dt�ddd�|�|�d��d�|d<dS)zM direct_abstract_declarator  : LPAREN parameter_type_list_opt RPAREN
        rWNr)r�r>r4r)rrLr@r9rv)rrmr#r#r$�p_direct_abstract_declarator_7sz&CParser.p_direct_abstract_declarator_7cCs(t|dt�r|dn|dg|d<dS)zG block_item  : declaration
                        | statement
        rrN)r?r�)rrmr#r#r$�p_block_item*szCParser.p_block_itemcCs:t|�dks|ddgkr"|dn|d|d|d<dS)z_ block_item_list : block_item
                            | block_item_list block_item
        rWNrr)r,)rrmr#r#r$�p_block_item_list2szCParser.p_block_item_listcCs&tj|d|�|�d��d�|d<dS)zA compound_statement : brace_open block_item_list_opt brace_close rWr)Zblock_itemsr4rN)rZCompoundr9rv)rrmr#r#r$�p_compound_statement_19szCParser.p_compound_statement_1c	Cs*t�|d|d|�|�d���|d<dS)z( labeled_statement : ID COLON statement rrxrN)rZLabelr9rv)rrmr#r#r$�p_labeled_statement_1?szCParser.p_labeled_statement_1c	Cs,t�|d|dg|�|�d���|d<dS)z> labeled_statement : CASE constant_expression COLON statement rWrzrrN)rZCaser9rv)rrmr#r#r$�p_labeled_statement_2CszCParser.p_labeled_statement_2cCs&t�|dg|�|�d���|d<dS)z- labeled_statement : DEFAULT COLON statement rxrrN)rZDefaultr9rv)rrmr#r#r$�p_labeled_statement_3GszCParser.p_labeled_statement_3c
Cs,t�|d|dd|�|�d���|d<dS)z= selection_statement : IF LPAREN expression RPAREN statement rxr�Nrr)r�Ifr9rv)rrmr#r#r$�p_selection_statement_1KszCParser.p_selection_statement_1c
Cs0t�|d|d|d|�|�d���|d<dS)zL selection_statement : IF LPAREN expression RPAREN statement ELSE statement rxr��rrN)rr�r9rv)rrmr#r#r$�p_selection_statement_2OszCParser.p_selection_statement_2c
Cs.tt�|d|d|�|�d����|d<dS)zA selection_statement : SWITCH LPAREN expression RPAREN statement rxr�rrN)r	rZSwitchr9rv)rrmr#r#r$�p_selection_statement_3SszCParser.p_selection_statement_3c	Cs*t�|d|d|�|�d���|d<dS)z@ iteration_statement : WHILE LPAREN expression RPAREN statement rxr�rrN)rZWhiler9rv)rrmr#r#r$�p_iteration_statement_1XszCParser.p_iteration_statement_1c	Cs*t�|d|d|�|�d���|d<dS)zH iteration_statement : DO statement WHILE LPAREN expression RPAREN SEMI r�rWrrN)rZDoWhiler9rv)rrmr#r#r$�p_iteration_statement_2\szCParser.p_iteration_statement_2cCs6t�|d|d|d|d|�|�d���|d<dS)zj iteration_statement : FOR LPAREN expression_opt SEMI expression_opt SEMI expression_opt RPAREN statement rxr�r��	rrN)r�Forr9rv)rrmr#r#r$�p_iteration_statement_3`szCParser.p_iteration_statement_3cCsJt�t�|d|�|�d���|d|d|d|�|�d���|d<dS)zb iteration_statement : FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN statement rxrrz��rN)rr�ZDeclListr9rv)rrmr#r#r$�p_iteration_statement_4dszCParser.p_iteration_statement_4cCs$t�|d|�|�d���|d<dS)z  jump_statement  : GOTO ID SEMI rWrrN)rZGotor9rv)rrmr#r#r$�p_jump_statement_1iszCParser.p_jump_statement_1cCst�|�|�d���|d<dS)z jump_statement  : BREAK SEMI rrN)rZBreakr9rv)rrmr#r#r$�p_jump_statement_2mszCParser.p_jump_statement_2cCst�|�|�d���|d<dS)z! jump_statement  : CONTINUE SEMI rrN)rZContinuer9rv)rrmr#r#r$�p_jump_statement_3qszCParser.p_jump_statement_3cCs4t�t|�dkr|dnd|�|�d���|d<dS)z\ jump_statement  : RETURN expression SEMI
                            | RETURN SEMI
        rzrWNrr)rZReturnr,r9rv)rrmr#r#r$�p_jump_statement_4uszCParser.p_jump_statement_4cCs8|ddkr(t�|�|�d���|d<n|d|d<dS)z, expression_statement : expression_opt SEMI rNr)rZEmptyStatementr9rv)rrmr#r#r$�p_expression_statement{szCParser.p_expression_statementcCsjt|�dkr|d|d<nLt|dtj�sFt�|dg|dj�|d<|dj�|d�|d|d<dS)zn expression  : assignment_expression
                        | expression COMMA assignment_expression
        rWrrrxN)r,r?r�ExprListr4r�r*)rrmr#r#r$�p_expression�szCParser.p_expressioncCs(tj|dg|�|�d��d�|d<dS)z typedef_name : TYPEID r)r4rN)rrKr9rv)rrmr#r#r$�p_typedef_name�szCParser.p_typedef_namecCsDt|�dkr|d|d<n&t�|d|d|d|dj�|d<dS)z� assignment_expression   : conditional_expression
                                    | unary_expression assignment_operator assignment_expression
        rWrrrxN)r,rZ
Assignmentr4)rrmr#r#r$�p_assignment_expression�szCParser.p_assignment_expressioncCs|d|d<dS)a� assignment_operator : EQUALS
                                | XOREQUAL
                                | TIMESEQUAL
                                | DIVEQUAL
                                | MODEQUAL
                                | PLUSEQUAL
                                | MINUSEQUAL
                                | LSHIFTEQUAL
                                | RSHIFTEQUAL
                                | ANDEQUAL
                                | OREQUAL
        rrNr#)rrmr#r#r$�p_assignment_operator�s
zCParser.p_assignment_operatorcCs|d|d<dS)z. constant_expression : conditional_expression rrNr#)rrmr#r#r$�p_constant_expression�szCParser.p_constant_expressioncCsDt|�dkr|d|d<n&t�|d|d|d|dj�|d<dS)z� conditional_expression  : binary_expression
                                    | binary_expression CONDOP expression COLON conditional_expression
        rWrrrxr�N)r,rZ	TernaryOpr4)rrmr#r#r$�p_conditional_expression�sz CParser.p_conditional_expressioncCsDt|�dkr|d|d<n&t�|d|d|d|dj�|d<dS)ak binary_expression   : cast_expression
                                | binary_expression TIMES binary_expression
                                | binary_expression DIVIDE binary_expression
                                | binary_expression MOD binary_expression
                                | binary_expression PLUS binary_expression
                                | binary_expression MINUS binary_expression
                                | binary_expression RSHIFT binary_expression
                                | binary_expression LSHIFT binary_expression
                                | binary_expression LT binary_expression
                                | binary_expression LE binary_expression
                                | binary_expression GE binary_expression
                                | binary_expression GT binary_expression
                                | binary_expression EQ binary_expression
                                | binary_expression NE binary_expression
                                | binary_expression AND binary_expression
                                | binary_expression OR binary_expression
                                | binary_expression XOR binary_expression
                                | binary_expression LAND binary_expression
                                | binary_expression LOR binary_expression
        rWrrrxN)r,rZBinaryOpr4)rrmr#r#r$�p_binary_expression�szCParser.p_binary_expressioncCs|d|d<dS)z$ cast_expression : unary_expression rrNr#)rrmr#r#r$�p_cast_expression_1�szCParser.p_cast_expression_1c	Cs*t�|d|d|�|�d���|d<dS)z; cast_expression : LPAREN type_name RPAREN cast_expression rWrzrrN)rZCastr9rv)rrmr#r#r$�p_cast_expression_2�szCParser.p_cast_expression_2cCs|d|d<dS)z* unary_expression    : postfix_expression rrNr#)rrmr#r#r$�p_unary_expression_1�szCParser.p_unary_expression_1cCs$t�|d|d|dj�|d<dS)z� unary_expression    : PLUSPLUS unary_expression
                                | MINUSMINUS unary_expression
                                | unary_operator cast_expression
        rrWrN)r�UnaryOpr4)rrmr#r#r$�p_unary_expression_2�szCParser.p_unary_expression_2c	Cs>t�|dt|�dkr|dn|d|�|�d���|d<dS)zx unary_expression    : SIZEOF unary_expression
                                | SIZEOF LPAREN type_name RPAREN
        rrxrWrN)rr�r,r9rv)rrmr#r#r$�p_unary_expression_3�szCParser.p_unary_expression_3cCs|d|d<dS)z� unary_operator  : AND
                            | TIMES
                            | PLUS
                            | MINUS
                            | NOT
                            | LNOT
        rrNr#)rrmr#r#r$�p_unary_operator�szCParser.p_unary_operatorcCs|d|d<dS)z* postfix_expression  : primary_expression rrNr#)rrmr#r#r$�p_postfix_expression_1�szCParser.p_postfix_expression_1cCs$t�|d|d|dj�|d<dS)zG postfix_expression  : postfix_expression LBRACKET expression RBRACKET rrxrN)rZArrayRefr4)rrmr#r#r$�p_postfix_expression_2szCParser.p_postfix_expression_2cCs4t�|dt|�dkr|dnd|dj�|d<dS)z� postfix_expression  : postfix_expression LPAREN argument_expression_list RPAREN
                                | postfix_expression LPAREN RPAREN
        rr�rxNr)r�FuncCallr,r4)rrmr#r#r$�p_postfix_expression_3szCParser.p_postfix_expression_3cCsBt�|d|�|�d���}t�|d|d||dj�|d<dS)z� postfix_expression  : postfix_expression PERIOD ID
                                | postfix_expression PERIOD TYPEID
                                | postfix_expression ARROW ID
                                | postfix_expression ARROW TYPEID
        rxrrWrN)rr�r9rvZ	StructRefr4)rrmZfieldr#r#r$�p_postfix_expression_4szCParser.p_postfix_expression_4cCs(t�d|d|d|dj�|d<dS)z{ postfix_expression  : postfix_expression PLUSPLUS
                                | postfix_expression MINUSMINUS
        rmrWrrN)rr�r4)rrmr#r#r$�p_postfix_expression_5szCParser.p_postfix_expression_5cCst�|d|d�|d<dS)z� postfix_expression  : LPAREN type_name RPAREN brace_open initializer_list brace_close
                                | LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close
        rWr�rN)rZCompoundLiteral)rrmr#r#r$�p_postfix_expression_6szCParser.p_postfix_expression_6cCs|d|d<dS)z" primary_expression  : identifier rrNr#)rrmr#r#r$�p_primary_expression_1 szCParser.p_primary_expression_1cCs|d|d<dS)z  primary_expression  : constant rrNr#)rrmr#r#r$�p_primary_expression_2$szCParser.p_primary_expression_2cCs|d|d<dS)zp primary_expression  : unified_string_literal
                                | unified_wstring_literal
        rrNr#)rrmr#r#r$�p_primary_expression_3(szCParser.p_primary_expression_3cCs|d|d<dS)z0 primary_expression  : LPAREN expression RPAREN rWrNr#)rrmr#r#r$�p_primary_expression_4.szCParser.p_primary_expression_4cCsF|�|�d��}t�t�|d|�t�|d|dg|�|�|d<dS)zQ primary_expression  : OFFSETOF LPAREN type_name COMMA identifier RPAREN
        rrxr�rN)r9rvrr�r�r�)rrmr4r#r#r$�p_primary_expression_52szCParser.p_primary_expression_5cCsNt|�dkr*t�|dg|dj�|d<n |dj�|d�|d|d<dS)z� argument_expression_list    : assignment_expression
                                        | argument_expression_list COMMA assignment_expression
        rWrrrxN)r,rr�r4r�r*)rrmr#r#r$�p_argument_expression_list:sz"CParser.p_argument_expression_listcCs$t�|d|�|�d���|d<dS)z identifier  : ID rrN)rr�r9rv)rrmr#r#r$�p_identifierDszCParser.p_identifierc	Cs&t�d|d|�|�d���|d<dS)z� constant    : INT_CONST_DEC
                        | INT_CONST_OCT
                        | INT_CONST_HEX
                        | INT_CONST_BIN
        rDrrN)r�Constantr9rv)rrmr#r#r$�p_constant_1HszCParser.p_constant_1c	Cs&t�d|d|�|�d���|d<dS)zM constant    : FLOAT_CONST
                        | HEX_FLOAT_CONST
        �floatrrN)rrr9rv)rrmr#r#r$�p_constant_2QszCParser.p_constant_2c	Cs&t�d|d|�|�d���|d<dS)zH constant    : CHAR_CONST
                        | WCHAR_CONST
        �charrrN)rrr9rv)rrmr#r#r$�p_constant_3XszCParser.p_constant_3c	Csht|�dkr0t�d|d|�|�d���|d<n4|djdd�|ddd�|d_|d|d<dS)z~ unified_string_literal  : STRING_LITERAL
                                    | unified_string_literal STRING_LITERAL
        rW�stringrrNr0)r,rrr9rv�value)rrmr#r#r$�p_unified_string_literalds
 (z CParser.p_unified_string_literalc	Cslt|�dkr0t�d|d|�|�d���|d<n8|dj��dd�|ddd�|d_|d|d<dS)z� unified_wstring_literal : WSTRING_LITERAL
                                    | unified_wstring_literal WSTRING_LITERAL
        rWr
rrNr0)r,rrr9rvr�rstrip)rrmr#r#r$�p_unified_wstring_literalos
 ,z!CParser.p_unified_wstring_literalcCs|d|d<dS)z  brace_open  :   LBRACE
        rrNr#)rrmr#r#r$�p_brace_openzszCParser.p_brace_opencCs|d|d<dS)z  brace_close :   RBRACE
        rrNr#)rrmr#r#r$�
p_brace_closeszCParser.p_brace_closecCsd|d<dS)zempty : Nrr#)rrmr#r#r$�p_empty�szCParser.p_emptycCs<|r,|�d|j|j|j|j�|�d��n|�dd�dS)Nz
before: %s)rvr<zAt end of inputr
)r2rr9rvrZfind_tok_column)rrmr#r#r$�p_error�szCParser.p_errorN)TrTrFr
)r
r)F)��__name__�
__module__�__qualname__r%r(r+r/r5r6r8rrrrr=rCrNrTrcrfrhZ
precedencernrorqrrrsrtrurwryr{r|r~rr�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrrrrrr
rrrrrrrr#r#r#r$r
s4c	

	)7-Y
		;		
	
&		
			

	
		

		
	
	r
�__main__)�reZplyrr
r�c_lexerrZ	plyparserrrrZast_transformsr	r
r�pprint�time�sysr#r#r#r$�<module>	s,

Youez - 2016 - github.com/yon3zu
LinuXploit