/
lib64
/
erlang
/
lib
/
edoc-1.1
/
src
/
File Upload :
llllll
Current File: //lib64/erlang/lib/edoc-1.1/src/edoc_parser.erl
%% EDoc function specification parser, generated from the file %% "edoc_parser.yrl" by the Yecc parser generator. %% %% Licensed under the Apache License, Version 2.0 (the "License"); you may %% not use this file except in compliance with the License. You may obtain %% a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0> %% %% Unless required by applicable law or agreed to in writing, software %% distributed under the License is distributed on an "AS IS" BASIS, %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %% See the License for the specific language governing permissions and %% limitations under the License. %% %% Alternatively, you may use this file under the terms of the GNU Lesser %% General Public License (the "LGPL") as published by the Free Software %% Foundation; either version 2.1, or (at your option) any later version. %% If you wish to allow use of your version of this file only under the %% terms of the LGPL, you should delete the provisions above and replace %% them with the notice and other provisions required by the LGPL; see %% <http://www.gnu.org/licenses/>. If you do not delete the provisions %% above, a recipient may use your version of this file under the terms of %% either the Apache License or the LGPL. %% %% @private %% @copyright 2002-2005 Richard Carlsson %% @author Richard Carlsson <carlsson.richard@gmail.com> -module(edoc_parser). -export([parse/1, parse_and_scan/1, format_error/1]). -file("edoc_parser.yrl", 275). -export([parse_spec/2, parse_typedef/2, parse_throws/2, parse_ref/2, parse_see/2, parse_param/2]). -include("edoc_types.hrl"). %% Multiple entry point hack: start_spec(Ts, L) -> run_parser(Ts, L, start_spec). start_typedef(Ts, L) -> run_parser(Ts, L, start_typedef). start_throws(Ts, L) -> run_parser(Ts, L, start_throws). start_ref(Ts, L) -> run_parser(Ts, L, start_ref). %% Error reporting fix run_parser(Ts, L, Start) -> case parse([{Start,L} | Ts]) of {error, {999999,?MODULE,_}} -> What = case Start of start_spec -> "specification"; start_typedef -> "type definition"; start_throws -> "exception declaration"; start_ref -> "reference" end, {error, {L,?MODULE,["unexpected end of ", What]}}; Other -> Other end. %% Utility functions: tok_val(T) -> element(3, T). tok_line(T) -> element(2, T). qname([A]) -> A. union(Ts) -> case Ts of [T] -> T; _ -> #t_union{types = lists:reverse(Ts)} end. annotate(T, A) -> ?add_t_ann(T, A). build_def(S, P, As, T) -> case all_vars(As) of true -> #t_def{name = #t_type{name = #t_name{name = S}, args = lists:reverse(As)}, type = T}; false -> return_error(tok_line(P), "variable expected after '('") end. all_vars([#t_var{} | As]) -> all_vars(As); all_vars(As) -> As =:= []. %% --------------------------------------------------------------------- %% EDoc type specification parsing. Parses the content of %% <a href="overview-summary.html#ftag-spec">`@spec'</a> declarations. parse_spec(S, L) -> case edoc_scanner:string(S, L) of {ok, Ts, _} -> case start_spec(Ts, L) of {ok, Spec} -> Spec; {error, E} -> throw_error({parse_spec, E}, L) end; {error, E, _} -> throw_error({parse_spec, E}, L) end. %% --------------------------------------------------------------------- %% EDoc type definition parsing. Parses the content of %% <a href="overview-summary.html#gtag-type">`@type'</a> declarations. parse_typedef(S, L) -> {S1, S2} = edoc_lib:split_at_stop(S), N = edoc_lib:count($\n, S1), L1 = L + N, Text = edoc_lib:strip_space(S2), {parse_typedef_1(S1, L), edoc_wiki:parse_xml(Text, L1)}. parse_typedef_1(S, L) -> case edoc_scanner:string(S, L) of {ok, Ts, _} -> case start_typedef(Ts, L) of {ok, T} -> T; {error, E} -> throw_error({parse_typedef, E}, L) end; {error, E, _} -> throw_error({parse_typedef, E}, L) end. %% --------------------------------------------------------------------- %% Parses a <a %% href="overview-summary.html#References">reference</a> to a module, %% function, type, or application parse_ref(S, L) -> case edoc_scanner:string(S, L) of {ok, Ts, _} -> case start_ref(Ts, L) of {ok, T} -> T; {error, E} -> throw_error({parse_ref, E}, L) end; {error, E, _} -> throw_error({parse_ref, E}, L) end. %% --------------------------------------------------------------------- %% Parses the content of %% <a href="overview-summary.html#ftag-see">`@see'</a> references. parse_see(S, L) -> {S1, S2} = edoc_lib:split_at_stop(S), N = edoc_lib:count($\n, S1), L1 = L + N, Text = edoc_lib:strip_space(S2), {parse_ref(S1, L), edoc_wiki:parse_xml(Text, L1)}. %% --------------------------------------------------------------------- %% Parses the content of %% <a href="overview-summary.html#ftag-param">`@param'</a> tags. parse_param(S, L) -> {S1, S2} = edoc_lib:split_at_space(edoc_lib:strip_space(S)), case edoc_lib:strip_space(S1) of "" -> throw_error(parse_param, L); Name -> Text = edoc_lib:strip_space(S2), {list_to_atom(Name), edoc_wiki:parse_xml(Text, L)} end. %% --------------------------------------------------------------------- %% EDoc exception specification parsing. Parses the content of %% <a href="overview-summary.html#ftag-throws">`@throws'</a> declarations. parse_throws(S, L) -> case edoc_scanner:string(S, L) of {ok, Ts, _} -> case start_throws(Ts, L) of {ok, Spec} -> Spec; {error, E} -> throw_error({parse_throws, E}, L) end; {error, E, _} -> throw_error({parse_throws, E}, L) end. %% --------------------------------------------------------------------- -spec throw_error(term(), erl_anno:line()) -> no_return(). throw_error({parse_spec, E}, L) -> throw_error({"specification", E}, L); throw_error({parse_typedef, E}, L) -> throw_error({"type definition", E}, L); throw_error({parse_ref, E}, L) -> throw_error({"reference", E}, L); throw_error({parse_throws, E}, L) -> throw_error({"throws-declaration", E}, L); throw_error(parse_param, L) -> throw({error, L, "missing parameter name"}); throw_error({Where, E}, L) when is_list(Where) -> throw({error,L,{"unknown error parsing ~ts: ~P.",[Where,E,15]}}). %% vim: ft=erlang -file("/root/rpm/rpmbuild/BUILD/otp_src_24.3.4.1/bootstrap/lib/parsetools/include/yeccpre.hrl", 0). %% %% %CopyrightBegin% %% %% Copyright Ericsson AB 1996-2021. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. %% You may obtain a copy of the License at %% %% http://www.apache.org/licenses/LICENSE-2.0 %% %% Unless required by applicable law or agreed to in writing, software %% distributed under the License is distributed on an "AS IS" BASIS, %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %% See the License for the specific language governing permissions and %% limitations under the License. %% %% %CopyrightEnd% %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % The parser generator will insert appropriate declarations before this line.% -type yecc_ret() :: {'error', _} | {'ok', _}. -spec parse(Tokens :: list()) -> yecc_ret(). parse(Tokens) -> yeccpars0(Tokens, {no_func, no_location}, 0, [], []). -spec parse_and_scan({function() | {atom(), atom()}, [_]} | {atom(), atom(), [_]}) -> yecc_ret(). parse_and_scan({F, A}) -> yeccpars0([], {{F, A}, no_location}, 0, [], []); parse_and_scan({M, F, A}) -> Arity = length(A), yeccpars0([], {{fun M:F/Arity, A}, no_location}, 0, [], []). -spec format_error(any()) -> [char() | list()]. format_error(Message) -> case io_lib:deep_char_list(Message) of true -> Message; _ -> io_lib:write(Message) end. %% To be used in grammar files to throw an error message to the parser %% toplevel. Doesn't have to be exported! -compile({nowarn_unused_function, return_error/2}). -spec return_error(erl_anno:location(), any()) -> no_return(). return_error(Location, Message) -> throw({error, {Location, ?MODULE, Message}}). -define(CODE_VERSION, "1.4"). yeccpars0(Tokens, Tzr, State, States, Vstack) -> try yeccpars1(Tokens, Tzr, State, States, Vstack) catch error: Error: Stacktrace -> try yecc_error_type(Error, Stacktrace) of Desc -> erlang:raise(error, {yecc_bug, ?CODE_VERSION, Desc}, Stacktrace) catch _:_ -> erlang:raise(error, Error, Stacktrace) end; %% Probably thrown from return_error/2: throw: {error, {_Location, ?MODULE, _M}} = Error -> Error end. yecc_error_type(function_clause, [{?MODULE,F,ArityOrArgs,_} | _]) -> case atom_to_list(F) of "yeccgoto_" ++ SymbolL -> {ok,[{atom,_,Symbol}],_} = erl_scan:string(SymbolL), State = case ArityOrArgs of [S,_,_,_,_,_,_] -> S; _ -> state_is_unknown end, {Symbol, State, missing_in_goto_table} end. yeccpars1([Token | Tokens], Tzr, State, States, Vstack) -> yeccpars2(State, element(1, Token), States, Vstack, Token, Tokens, Tzr); yeccpars1([], {{F, A},_Location}, State, States, Vstack) -> case apply(F, A) of {ok, Tokens, EndLocation} -> yeccpars1(Tokens, {{F, A}, EndLocation}, State, States, Vstack); {eof, EndLocation} -> yeccpars1([], {no_func, EndLocation}, State, States, Vstack); {error, Descriptor, _EndLocation} -> {error, Descriptor} end; yeccpars1([], {no_func, no_location}, State, States, Vstack) -> Line = 999999, yeccpars2(State, '$end', States, Vstack, yecc_end(Line), [], {no_func, Line}); yeccpars1([], {no_func, EndLocation}, State, States, Vstack) -> yeccpars2(State, '$end', States, Vstack, yecc_end(EndLocation), [], {no_func, EndLocation}). %% yeccpars1/7 is called from generated code. %% %% When using the {includefile, Includefile} option, make sure that %% yeccpars1/7 can be found by parsing the file without following %% include directives. yecc will otherwise assume that an old %% yeccpre.hrl is included (one which defines yeccpars1/5). yeccpars1(State1, State, States, Vstack, Token0, [Token | Tokens], Tzr) -> yeccpars2(State, element(1, Token), [State1 | States], [Token0 | Vstack], Token, Tokens, Tzr); yeccpars1(State1, State, States, Vstack, Token0, [], {{_F,_A}, _Location}=Tzr) -> yeccpars1([], Tzr, State, [State1 | States], [Token0 | Vstack]); yeccpars1(State1, State, States, Vstack, Token0, [], {no_func, no_location}) -> Location = yecctoken_end_location(Token0), yeccpars2(State, '$end', [State1 | States], [Token0 | Vstack], yecc_end(Location), [], {no_func, Location}); yeccpars1(State1, State, States, Vstack, Token0, [], {no_func, Location}) -> yeccpars2(State, '$end', [State1 | States], [Token0 | Vstack], yecc_end(Location), [], {no_func, Location}). %% For internal use only. yecc_end(Location) -> {'$end', Location}. yecctoken_end_location(Token) -> try erl_anno:end_location(element(2, Token)) of undefined -> yecctoken_location(Token); Loc -> Loc catch _:_ -> yecctoken_location(Token) end. -compile({nowarn_unused_function, yeccerror/1}). yeccerror(Token) -> Text = yecctoken_to_string(Token), Location = yecctoken_location(Token), {error, {Location, ?MODULE, ["syntax error before: ", Text]}}. -compile({nowarn_unused_function, yecctoken_to_string/1}). yecctoken_to_string(Token) -> try erl_scan:text(Token) of undefined -> yecctoken2string(Token); Txt -> Txt catch _:_ -> yecctoken2string(Token) end. yecctoken_location(Token) -> try erl_scan:location(Token) catch _:_ -> element(2, Token) end. -compile({nowarn_unused_function, yecctoken2string/1}). yecctoken2string(Token) -> try yecctoken2string1(Token) catch _:_ -> io_lib:format("~tp", [Token]) end. -compile({nowarn_unused_function, yecctoken2string1/1}). yecctoken2string1({atom, _, A}) -> io_lib:write_atom(A); yecctoken2string1({integer,_,N}) -> io_lib:write(N); yecctoken2string1({float,_,F}) -> io_lib:write(F); yecctoken2string1({char,_,C}) -> io_lib:write_char(C); yecctoken2string1({var,_,V}) -> io_lib:format("~s", [V]); yecctoken2string1({string,_,S}) -> io_lib:write_string(S); yecctoken2string1({reserved_symbol, _, A}) -> io_lib:write(A); yecctoken2string1({_Cat, _, Val}) -> io_lib:format("~tp", [Val]); yecctoken2string1({dot, _}) -> "'.'"; yecctoken2string1({'$end', _}) -> []; yecctoken2string1({Other, _}) when is_atom(Other) -> io_lib:write_atom(Other); yecctoken2string1(Other) -> io_lib:format("~tp", [Other]). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -file("edoc_parser.erl", 395). -dialyzer({nowarn_function, yeccpars2/7}). -compile({nowarn_unused_function, yeccpars2/7}). yeccpars2(0=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_0(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(1=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_1(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(2=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_2(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(3=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_3(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(4=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(5=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_5(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(6=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_6(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(7=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_7(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(8=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_8(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(9=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_9(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(10=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_10(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(11=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_11(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(12=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_12(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(13=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_13(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(14=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_14(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(15=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_15(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(16=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_16(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(17=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_17(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(18=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_18(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(19=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(20=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_20(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(21=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_21(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(22=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_22(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(23=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_23(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(24=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(25=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_25(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(26=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_26(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(27=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_27(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(28=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_28(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(29=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_29(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(30=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_30(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(31=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_31(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(32=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_32(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(33=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_33(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(34=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_34(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(35=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_35(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(36=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_36(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(37=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_37(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(38=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_38(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(39=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_39(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(40=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_40(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(41=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_41(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(42=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_42(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(43=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_43(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(44=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_44(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(45=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_45(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(46=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(47=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_47(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(48=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_48(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(49=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_49(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(50=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_50(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(51=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_51(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(52=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_49(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(53=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_49(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(54=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_54(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(55=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_55(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(56=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_56(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(57=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_57(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(58=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_58(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(59=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_59(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(60=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_60(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(61=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_61(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(62=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_62(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(63=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_63(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(64=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_64(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(65=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_65(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(66=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_66(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(67=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_67(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(68=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_68(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(69=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_69(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(70=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_70(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(71=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_71(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(72=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_72(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(73=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_73(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(74=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_74(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(75=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_75(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(76=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_76(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(77=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_77(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(78=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_78(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(79=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_79(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(80=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_80(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(81=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_81(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(82=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_82(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(83=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_83(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(84=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_84(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(85=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_85(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(86=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_86(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(87=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_87(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(88=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_88(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(89=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_89(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(90=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_90(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(91=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_91(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(92=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_92(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(93=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_93(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(94=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_94(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(95=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_95(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(96=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_96(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(97=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_97(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(98=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_98(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(99=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_99(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(100=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(101=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(102=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_102(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(103=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_103(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(104=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(105=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_105(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(106=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_106(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(107=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_107(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(108=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_108(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(109=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_109(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(110=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_110(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(111=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_111(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(112=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(113=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_113(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(114=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_114(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(115=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_115(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(116=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_116(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(117=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_49(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(118=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_118(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(119=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_119(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(120=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_120(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(121=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_90(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(122=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_122(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(123=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_123(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(124=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_124(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(125=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_125(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(126=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(127=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_127(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(128=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_128(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(129=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_129(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(130=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_130(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(131=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_131(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(132=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_132(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(133=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_133(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(134=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_134(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(135=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_135(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(136=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_136(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(137=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_137(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(138=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_138(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(139=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_139(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(140=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_90(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(141=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_141(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(142=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_142(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(143=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_143(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(144=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_144(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(145=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_145(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(146=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(147=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_147(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(148=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_148(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(149=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_149(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(150=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_150(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(151=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_151(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(152=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_152(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(153=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_153(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(154=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_154(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(155=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_155(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(156=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_156(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(157=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_157(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(158=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_158(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(159=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_159(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(160=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_85(S, Cat, Ss, Stack, T, Ts, Tzr); %% yeccpars2(161=S, Cat, Ss, Stack, T, Ts, Tzr) -> %% yeccpars2_161(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(162=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_162(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(163=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_163(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(164=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_164(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(165=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_165(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(166=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_166(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(167=S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_167(S, Cat, Ss, Stack, T, Ts, Tzr); yeccpars2(Other, _, _, _, _, _, _) -> erlang:error({yecc_bug,"1.4",{missing_state_in_action_table, Other}}). -dialyzer({nowarn_function, yeccpars2_0/7}). -compile({nowarn_unused_function, yeccpars2_0/7}). yeccpars2_0(S, start_ref, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 2, Ss, Stack, T, Ts, Tzr); yeccpars2_0(S, start_spec, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 3, Ss, Stack, T, Ts, Tzr); yeccpars2_0(S, start_throws, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 4, Ss, Stack, T, Ts, Tzr); yeccpars2_0(S, start_typedef, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 5, Ss, Stack, T, Ts, Tzr); yeccpars2_0(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_1/7}). -compile({nowarn_unused_function, yeccpars2_1/7}). yeccpars2_1(_S, '$end', _Ss, Stack, _T, _Ts, _Tzr) -> {ok, hd(Stack)}; yeccpars2_1(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_2/7}). -compile({nowarn_unused_function, yeccpars2_2/7}). yeccpars2_2(S, '//', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 153, Ss, Stack, T, Ts, Tzr); yeccpars2_2(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 154, Ss, Stack, T, Ts, Tzr); yeccpars2_2(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_3/7}). -compile({nowarn_unused_function, yeccpars2_3/7}). yeccpars2_3(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 59, Ss, Stack, T, Ts, Tzr); yeccpars2_3(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 142, Ss, Stack, T, Ts, Tzr); yeccpars2_3(_, _, _, _, T, _, _) -> yeccerror(T). yeccpars2_4(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 42, Ss, Stack, T, Ts, Tzr); yeccpars2_4(S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_cont_4(S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_4/7}). -compile({nowarn_unused_function, yeccpars2_4/7}). yeccpars2_cont_4(S, '#', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 34, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 35, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, '//', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 36, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, '<<', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 37, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, '[', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 38, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 39, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, float, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 40, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 41, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 43, Ss, Stack, T, Ts, Tzr); yeccpars2_cont_4(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_5/7}). -compile({nowarn_unused_function, yeccpars2_5/7}). yeccpars2_5(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 7, Ss, Stack, T, Ts, Tzr); yeccpars2_5(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_6/7}). -compile({nowarn_unused_function, yeccpars2_6/7}). yeccpars2_6(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_6_(Stack), yeccgoto_start(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_7/7}). -compile({nowarn_unused_function, yeccpars2_7/7}). yeccpars2_7(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 9, Ss, Stack, T, Ts, Tzr); yeccpars2_7(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_8/7}). -compile({nowarn_unused_function, yeccpars2_8/7}). yeccpars2_8(S, '=', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 19, Ss, Stack, T, Ts, Tzr); yeccpars2_8(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_8(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_8(S, where, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 22, Ss, Stack, T, Ts, Tzr); yeccpars2_8(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_8_(Stack), yeccpars2_17(_S, Cat, [8 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_9/7}). -compile({nowarn_unused_function, yeccpars2_9/7}). yeccpars2_9(S, ')', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 11, Ss, Stack, T, Ts, Tzr); yeccpars2_9(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 12, Ss, Stack, T, Ts, Tzr); yeccpars2_9(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_10/7}). -compile({nowarn_unused_function, yeccpars2_10/7}). yeccpars2_10(S, ')', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 13, Ss, Stack, T, Ts, Tzr); yeccpars2_10(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 14, Ss, Stack, T, Ts, Tzr); yeccpars2_10(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_11/7}). -compile({nowarn_unused_function, yeccpars2_11/7}). yeccpars2_11(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_11_(Stack), yeccgoto_var_list(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_12/7}). -compile({nowarn_unused_function, yeccpars2_12/7}). yeccpars2_12(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_12_(Stack), yeccgoto_vars(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_13/7}). -compile({nowarn_unused_function, yeccpars2_13/7}). yeccpars2_13(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_13_(Stack), yeccgoto_var_list(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_14/7}). -compile({nowarn_unused_function, yeccpars2_14/7}). yeccpars2_14(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 15, Ss, Stack, T, Ts, Tzr); yeccpars2_14(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_15/7}). -compile({nowarn_unused_function, yeccpars2_15/7}). yeccpars2_15(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_15_(Stack), yeccgoto_vars(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_16/7}). -compile({nowarn_unused_function, yeccpars2_16/7}). yeccpars2_16(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_16_(Stack), yeccgoto_typedef(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_17/7}). -compile({nowarn_unused_function, yeccpars2_17/7}). yeccpars2_17(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_17_(Stack), yeccgoto_where_defs(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_18/7}). -compile({nowarn_unused_function, yeccpars2_18/7}). yeccpars2_18(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_18_(Stack), yeccpars2_130(130, Cat, [18 | Ss], NewStack, T, Ts, Tzr). %% yeccpars2_19: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_20/7}). -compile({nowarn_unused_function, yeccpars2_20/7}). yeccpars2_20(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 123, Ss, Stack, T, Ts, Tzr); yeccpars2_20(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_21/7}). -compile({nowarn_unused_function, yeccpars2_21/7}). yeccpars2_21(S, '=', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 24, Ss, Stack, T, Ts, Tzr); yeccpars2_21(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_22/7}). -compile({nowarn_unused_function, yeccpars2_22/7}). yeccpars2_22(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_22(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_22(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_22_(Stack), yeccpars2_23(_S, Cat, [22 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_23/7}). -compile({nowarn_unused_function, yeccpars2_23/7}). yeccpars2_23(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_23_(Stack), yeccgoto_where_defs(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). %% yeccpars2_24: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_25/7}). -compile({nowarn_unused_function, yeccpars2_25/7}). yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_25_(Stack), yeccgoto_ptype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_26/7}). -compile({nowarn_unused_function, yeccpars2_26/7}). yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_26_(Stack), yeccgoto_ptype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_27/7}). -compile({nowarn_unused_function, yeccpars2_27/7}). yeccpars2_27(_S, '$end', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\'$end\''(Stack), yeccgoto_ptype(hd(Ss), '$end', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, ')', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\')\''(Stack), yeccgoto_ptype(hd(Ss), ')', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, '+', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\'+\''(Stack), yeccgoto_ptype(hd(Ss), '+', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, ',', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\',\''(Stack), yeccgoto_ptype(hd(Ss), ',', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, ':=', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\':=\''(Stack), yeccgoto_ptype(hd(Ss), ':=', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, '=>', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\'=>\''(Stack), yeccgoto_ptype(hd(Ss), '=>', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, ']', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\']\''(Stack), yeccgoto_ptype(hd(Ss), ']', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, atom, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_27_atom(Stack), yeccgoto_ptype(hd(Ss), atom, Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, string, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_27_string(Stack), yeccgoto_ptype(hd(Ss), string, Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, var, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_27_var(Stack), yeccgoto_ptype(hd(Ss), var, Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, where, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_27_where(Stack), yeccgoto_ptype(hd(Ss), where, Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, '|', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\'|\''(Stack), yeccgoto_ptype(hd(Ss), '|', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, '}', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_27_\'}\''(Stack), yeccgoto_ptype(hd(Ss), '}', Ss, NewStack, T, Ts, Tzr); yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_27_(Stack), yeccgoto_futype_list(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_28/7}). -compile({nowarn_unused_function, yeccpars2_28/7}). yeccpars2_28(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_28_(Stack), yeccgoto_def(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_29/7}). -compile({nowarn_unused_function, yeccpars2_29/7}). yeccpars2_29(S, '.', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 88, Ss, Stack, T, Ts, Tzr); yeccpars2_29(S, ':', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 120, Ss, Stack, T, Ts, Tzr); yeccpars2_29(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_30/7}). -compile({nowarn_unused_function, yeccpars2_30/7}). yeccpars2_30(S, '+', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 52, Ss, Stack, T, Ts, Tzr); yeccpars2_30(S, '|', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 53, Ss, Stack, T, Ts, Tzr); yeccpars2_30(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_30_(Stack), yeccgoto_nutype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_31/7}). -compile({nowarn_unused_function, yeccpars2_31/7}). yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_31_(Stack), yeccgoto_ptypes(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_32/7}). -compile({nowarn_unused_function, yeccpars2_32/7}). yeccpars2_32(S, string, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 119, Ss, Stack, T, Ts, Tzr); yeccpars2_32(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_32_(Stack), yeccgoto_utype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_33/7}). -compile({nowarn_unused_function, yeccpars2_33/7}). yeccpars2_33(S, '->', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 117, Ss, Stack, T, Ts, Tzr); yeccpars2_33(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_34/7}). -compile({nowarn_unused_function, yeccpars2_34/7}). yeccpars2_34(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 95, Ss, Stack, T, Ts, Tzr); yeccpars2_34(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 96, Ss, Stack, T, Ts, Tzr); yeccpars2_34(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_35/7}). -compile({nowarn_unused_function, yeccpars2_35/7}). yeccpars2_35(S, '#', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 34, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 35, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, '...', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 93, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, '//', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 36, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, '<<', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 37, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, '[', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 38, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 39, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, float, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 40, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 41, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 42, Ss, Stack, T, Ts, Tzr); yeccpars2_35(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 43, Ss, Stack, T, Ts, Tzr); yeccpars2_35(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_35_(Stack), yeccpars2_60(60, Cat, [35 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_36/7}). -compile({nowarn_unused_function, yeccpars2_36/7}). yeccpars2_36(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 84, Ss, Stack, T, Ts, Tzr); yeccpars2_36(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_37/7}). -compile({nowarn_unused_function, yeccpars2_37/7}). yeccpars2_37(S, '>>', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 70, Ss, Stack, T, Ts, Tzr); yeccpars2_37(S, an_var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 71, Ss, Stack, T, Ts, Tzr); yeccpars2_37(_, _, _, _, T, _, _) -> yeccerror(T). yeccpars2_38(S, ']', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 63, Ss, Stack, T, Ts, Tzr); yeccpars2_38(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 42, Ss, Stack, T, Ts, Tzr); yeccpars2_38(S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_cont_4(S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_39/7}). -compile({nowarn_unused_function, yeccpars2_39/7}). yeccpars2_39(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 59, Ss, Stack, T, Ts, Tzr); yeccpars2_39(_S, '$end', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\'$end\''(Stack), yeccgoto_ptype(hd(Ss), '$end', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, ')', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\')\''(Stack), yeccgoto_ptype(hd(Ss), ')', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, '+', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\'+\''(Stack), yeccgoto_ptype(hd(Ss), '+', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, ',', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\',\''(Stack), yeccgoto_ptype(hd(Ss), ',', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, ':=', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\':=\''(Stack), yeccgoto_ptype(hd(Ss), ':=', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, '=>', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\'=>\''(Stack), yeccgoto_ptype(hd(Ss), '=>', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, ']', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\']\''(Stack), yeccgoto_ptype(hd(Ss), ']', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, atom, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_39_atom(Stack), yeccgoto_ptype(hd(Ss), atom, Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, string, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_39_string(Stack), yeccgoto_ptype(hd(Ss), string, Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, var, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_39_var(Stack), yeccgoto_ptype(hd(Ss), var, Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, where, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_39_where(Stack), yeccgoto_ptype(hd(Ss), where, Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, '|', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\'|\''(Stack), yeccgoto_ptype(hd(Ss), '|', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, '}', Ss, Stack, T, Ts, Tzr) -> NewStack = 'yeccpars2_39_\'}\''(Stack), yeccgoto_ptype(hd(Ss), '}', Ss, NewStack, T, Ts, Tzr); yeccpars2_39(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_39_(Stack), yeccgoto_qname(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_40/7}). -compile({nowarn_unused_function, yeccpars2_40/7}). yeccpars2_40(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_40_(Stack), yeccgoto_ptype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_41/7}). -compile({nowarn_unused_function, yeccpars2_41/7}). yeccpars2_41(S, '..', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 56, Ss, Stack, T, Ts, Tzr); yeccpars2_41(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_41_(Stack), yeccgoto_ptype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_42/7}). -compile({nowarn_unused_function, yeccpars2_42/7}). yeccpars2_42(S, '::', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 49, Ss, Stack, T, Ts, Tzr); yeccpars2_42(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_42_(Stack), yeccgoto_ptype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_43/7}). -compile({nowarn_unused_function, yeccpars2_43/7}). yeccpars2_43(S, '#', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 34, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 35, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, '//', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 36, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, '<<', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 37, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, '[', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 38, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 39, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, float, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 40, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 41, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 42, Ss, Stack, T, Ts, Tzr); yeccpars2_43(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 43, Ss, Stack, T, Ts, Tzr); yeccpars2_43(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_43_(Stack), yeccpars2_44(44, Cat, [43 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_44/7}). -compile({nowarn_unused_function, yeccpars2_44/7}). yeccpars2_44(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 46, Ss, Stack, T, Ts, Tzr); yeccpars2_44(S, '}', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 47, Ss, Stack, T, Ts, Tzr); yeccpars2_44(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_45/7}). -compile({nowarn_unused_function, yeccpars2_45/7}). yeccpars2_45(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_45_(Stack), yeccgoto_utypes(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). %% yeccpars2_46: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_47/7}). -compile({nowarn_unused_function, yeccpars2_47/7}). yeccpars2_47(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_47_(Stack), yeccgoto_utype_tuple(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_48/7}). -compile({nowarn_unused_function, yeccpars2_48/7}). yeccpars2_48(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_48_(Stack), yeccgoto_utypes(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). yeccpars2_49(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 51, Ss, Stack, T, Ts, Tzr); yeccpars2_49(S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_cont_4(S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_50/7}). -compile({nowarn_unused_function, yeccpars2_50/7}). yeccpars2_50(S, '+', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 52, Ss, Stack, T, Ts, Tzr); yeccpars2_50(S, '|', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 53, Ss, Stack, T, Ts, Tzr); yeccpars2_50(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_50_(Stack), yeccgoto_nutype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_51/7}). -compile({nowarn_unused_function, yeccpars2_51/7}). yeccpars2_51(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_51_(Stack), yeccgoto_ptype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). %% yeccpars2_52: see yeccpars2_49 %% yeccpars2_53: see yeccpars2_49 -dialyzer({nowarn_function, yeccpars2_54/7}). -compile({nowarn_unused_function, yeccpars2_54/7}). yeccpars2_54(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_54_(Stack), yeccgoto_ptypes(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_55/7}). -compile({nowarn_unused_function, yeccpars2_55/7}). yeccpars2_55(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_55_(Stack), yeccgoto_ptypes(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_56/7}). -compile({nowarn_unused_function, yeccpars2_56/7}). yeccpars2_56(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 57, Ss, Stack, T, Ts, Tzr); yeccpars2_56(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_57/7}). -compile({nowarn_unused_function, yeccpars2_57/7}). yeccpars2_57(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_57_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_58/7}). -compile({nowarn_unused_function, yeccpars2_58/7}). yeccpars2_58(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_58_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_59/7}). -compile({nowarn_unused_function, yeccpars2_59/7}). yeccpars2_59(S, '#', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 34, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 35, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, '//', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 36, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, '<<', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 37, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, '[', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 38, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 39, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, float, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 40, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 41, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 42, Ss, Stack, T, Ts, Tzr); yeccpars2_59(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 43, Ss, Stack, T, Ts, Tzr); yeccpars2_59(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_59_(Stack), yeccpars2_60(60, Cat, [59 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_60/7}). -compile({nowarn_unused_function, yeccpars2_60/7}). yeccpars2_60(S, ')', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 61, Ss, Stack, T, Ts, Tzr); yeccpars2_60(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 46, Ss, Stack, T, Ts, Tzr); yeccpars2_60(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_61/7}). -compile({nowarn_unused_function, yeccpars2_61/7}). yeccpars2_61(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_61_(Stack), yeccgoto_utype_list(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_62/7}). -compile({nowarn_unused_function, yeccpars2_62/7}). yeccpars2_62(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 64, Ss, Stack, T, Ts, Tzr); yeccpars2_62(S, ']', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 65, Ss, Stack, T, Ts, Tzr); yeccpars2_62(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_63/7}). -compile({nowarn_unused_function, yeccpars2_63/7}). yeccpars2_63(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_63_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_64/7}). -compile({nowarn_unused_function, yeccpars2_64/7}). yeccpars2_64(S, '...', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 66, Ss, Stack, T, Ts, Tzr); yeccpars2_64(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_65/7}). -compile({nowarn_unused_function, yeccpars2_65/7}). yeccpars2_65(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_65_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_66/7}). -compile({nowarn_unused_function, yeccpars2_66/7}). yeccpars2_66(S, ']', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 67, Ss, Stack, T, Ts, Tzr); yeccpars2_66(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_67/7}). -compile({nowarn_unused_function, yeccpars2_67/7}). yeccpars2_67(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_|Nss] = Ss, NewStack = yeccpars2_67_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_68/7}). -compile({nowarn_unused_function, yeccpars2_68/7}). yeccpars2_68(S, '>>', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 83, Ss, Stack, T, Ts, Tzr); yeccpars2_68(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_69/7}). -compile({nowarn_unused_function, yeccpars2_69/7}). yeccpars2_69(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 77, Ss, Stack, T, Ts, Tzr); yeccpars2_69(S, '>>', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 78, Ss, Stack, T, Ts, Tzr); yeccpars2_69(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_70/7}). -compile({nowarn_unused_function, yeccpars2_70/7}). yeccpars2_70(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_70_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_71/7}). -compile({nowarn_unused_function, yeccpars2_71/7}). yeccpars2_71(S, ':', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 72, Ss, Stack, T, Ts, Tzr); yeccpars2_71(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_72/7}). -compile({nowarn_unused_function, yeccpars2_72/7}). yeccpars2_72(S, an_var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 73, Ss, Stack, T, Ts, Tzr); yeccpars2_72(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 74, Ss, Stack, T, Ts, Tzr); yeccpars2_72(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_73/7}). -compile({nowarn_unused_function, yeccpars2_73/7}). yeccpars2_73(S, '*', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 75, Ss, Stack, T, Ts, Tzr); yeccpars2_73(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_74/7}). -compile({nowarn_unused_function, yeccpars2_74/7}). yeccpars2_74(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_74_(Stack), yeccgoto_bin_base_type(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_75/7}). -compile({nowarn_unused_function, yeccpars2_75/7}). yeccpars2_75(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 76, Ss, Stack, T, Ts, Tzr); yeccpars2_75(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_76/7}). -compile({nowarn_unused_function, yeccpars2_76/7}). yeccpars2_76(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_|Nss] = Ss, NewStack = yeccpars2_76_(Stack), yeccgoto_bin_unit_type(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_77/7}). -compile({nowarn_unused_function, yeccpars2_77/7}). yeccpars2_77(S, an_var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 80, Ss, Stack, T, Ts, Tzr); yeccpars2_77(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_78/7}). -compile({nowarn_unused_function, yeccpars2_78/7}). yeccpars2_78(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_78_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_79/7}). -compile({nowarn_unused_function, yeccpars2_79/7}). yeccpars2_79(S, '>>', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 82, Ss, Stack, T, Ts, Tzr); yeccpars2_79(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_80/7}). -compile({nowarn_unused_function, yeccpars2_80/7}). yeccpars2_80(S, ':', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 81, Ss, Stack, T, Ts, Tzr); yeccpars2_80(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_81/7}). -compile({nowarn_unused_function, yeccpars2_81/7}). yeccpars2_81(S, an_var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 73, Ss, Stack, T, Ts, Tzr); yeccpars2_81(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_82/7}). -compile({nowarn_unused_function, yeccpars2_82/7}). yeccpars2_82(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_|Nss] = Ss, NewStack = yeccpars2_82_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_83/7}). -compile({nowarn_unused_function, yeccpars2_83/7}). yeccpars2_83(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_83_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_84/7}). -compile({nowarn_unused_function, yeccpars2_84/7}). yeccpars2_84(S, '/', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 85, Ss, Stack, T, Ts, Tzr); yeccpars2_84(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_85/7}). -compile({nowarn_unused_function, yeccpars2_85/7}). yeccpars2_85(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 87, Ss, Stack, T, Ts, Tzr); yeccpars2_85(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_86/7}). -compile({nowarn_unused_function, yeccpars2_86/7}). yeccpars2_86(S, '.', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 88, Ss, Stack, T, Ts, Tzr); yeccpars2_86(S, ':', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 89, Ss, Stack, T, Ts, Tzr); yeccpars2_86(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_87/7}). -compile({nowarn_unused_function, yeccpars2_87/7}). yeccpars2_87(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_87_(Stack), yeccgoto_qname(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_88/7}). -compile({nowarn_unused_function, yeccpars2_88/7}). yeccpars2_88(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 92, Ss, Stack, T, Ts, Tzr); yeccpars2_88(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_89/7}). -compile({nowarn_unused_function, yeccpars2_89/7}). yeccpars2_89(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 90, Ss, Stack, T, Ts, Tzr); yeccpars2_89(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_90/7}). -compile({nowarn_unused_function, yeccpars2_90/7}). yeccpars2_90(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 59, Ss, Stack, T, Ts, Tzr); yeccpars2_90(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_91/7}). -compile({nowarn_unused_function, yeccpars2_91/7}). yeccpars2_91(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_,_,_|Nss] = Ss, NewStack = yeccpars2_91_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_92/7}). -compile({nowarn_unused_function, yeccpars2_92/7}). yeccpars2_92(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_92_(Stack), yeccgoto_qname(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_93/7}). -compile({nowarn_unused_function, yeccpars2_93/7}). yeccpars2_93(S, ')', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 94, Ss, Stack, T, Ts, Tzr); yeccpars2_93(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_94/7}). -compile({nowarn_unused_function, yeccpars2_94/7}). yeccpars2_94(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_94_(Stack), yeccgoto_futype_list(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_95/7}). -compile({nowarn_unused_function, yeccpars2_95/7}). yeccpars2_95(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 107, Ss, Stack, T, Ts, Tzr); yeccpars2_95(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_96/7}). -compile({nowarn_unused_function, yeccpars2_96/7}). yeccpars2_96(S, '#', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 34, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 35, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, '//', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 36, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, '<<', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 37, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, '[', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 38, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 39, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, float, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 40, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 41, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 42, Ss, Stack, T, Ts, Tzr); yeccpars2_96(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 43, Ss, Stack, T, Ts, Tzr); yeccpars2_96(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_96_(Stack), yeccpars2_97(97, Cat, [96 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_97/7}). -compile({nowarn_unused_function, yeccpars2_97/7}). yeccpars2_97(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 104, Ss, Stack, T, Ts, Tzr); yeccpars2_97(S, '}', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 105, Ss, Stack, T, Ts, Tzr); yeccpars2_97(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_98/7}). -compile({nowarn_unused_function, yeccpars2_98/7}). yeccpars2_98(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_98_(Stack), yeccgoto_utype_map_fields(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_99/7}). -compile({nowarn_unused_function, yeccpars2_99/7}). yeccpars2_99(S, ':=', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 100, Ss, Stack, T, Ts, Tzr); yeccpars2_99(S, '=>', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 101, Ss, Stack, T, Ts, Tzr); yeccpars2_99(_, _, _, _, T, _, _) -> yeccerror(T). %% yeccpars2_100: see yeccpars2_4 %% yeccpars2_101: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_102/7}). -compile({nowarn_unused_function, yeccpars2_102/7}). yeccpars2_102(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_102_(Stack), yeccgoto_utype_map_field(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_103/7}). -compile({nowarn_unused_function, yeccpars2_103/7}). yeccpars2_103(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_103_(Stack), yeccgoto_utype_map_field(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). %% yeccpars2_104: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_105/7}). -compile({nowarn_unused_function, yeccpars2_105/7}). yeccpars2_105(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_|Nss] = Ss, NewStack = yeccpars2_105_(Stack), yeccgoto_utype_map(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_106/7}). -compile({nowarn_unused_function, yeccpars2_106/7}). yeccpars2_106(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_106_(Stack), yeccgoto_utype_map_fields(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_107/7}). -compile({nowarn_unused_function, yeccpars2_107/7}). yeccpars2_107(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 110, Ss, Stack, T, Ts, Tzr); yeccpars2_107(S, '}', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 111, Ss, Stack, T, Ts, Tzr); yeccpars2_107(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_108/7}). -compile({nowarn_unused_function, yeccpars2_108/7}). yeccpars2_108(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 114, Ss, Stack, T, Ts, Tzr); yeccpars2_108(S, '}', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 115, Ss, Stack, T, Ts, Tzr); yeccpars2_108(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_109/7}). -compile({nowarn_unused_function, yeccpars2_109/7}). yeccpars2_109(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_109_(Stack), yeccgoto_fields(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_110/7}). -compile({nowarn_unused_function, yeccpars2_110/7}). yeccpars2_110(S, '=', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 112, Ss, Stack, T, Ts, Tzr); yeccpars2_110(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_111/7}). -compile({nowarn_unused_function, yeccpars2_111/7}). yeccpars2_111(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_|Nss] = Ss, NewStack = yeccpars2_111_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). %% yeccpars2_112: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_113/7}). -compile({nowarn_unused_function, yeccpars2_113/7}). yeccpars2_113(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_113_(Stack), yeccgoto_field(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_114/7}). -compile({nowarn_unused_function, yeccpars2_114/7}). yeccpars2_114(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 110, Ss, Stack, T, Ts, Tzr); yeccpars2_114(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_115/7}). -compile({nowarn_unused_function, yeccpars2_115/7}). yeccpars2_115(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_|Nss] = Ss, NewStack = yeccpars2_115_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_116/7}). -compile({nowarn_unused_function, yeccpars2_116/7}). yeccpars2_116(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_116_(Stack), yeccgoto_fields(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). %% yeccpars2_117: see yeccpars2_49 -dialyzer({nowarn_function, yeccpars2_118/7}). -compile({nowarn_unused_function, yeccpars2_118/7}). yeccpars2_118(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_118_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_119/7}). -compile({nowarn_unused_function, yeccpars2_119/7}). yeccpars2_119(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_119_(Stack), yeccgoto_utype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_120/7}). -compile({nowarn_unused_function, yeccpars2_120/7}). yeccpars2_120(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 121, Ss, Stack, T, Ts, Tzr); yeccpars2_120(_, _, _, _, T, _, _) -> yeccerror(T). %% yeccpars2_121: see yeccpars2_90 -dialyzer({nowarn_function, yeccpars2_122/7}). -compile({nowarn_unused_function, yeccpars2_122/7}). yeccpars2_122(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_|Nss] = Ss, NewStack = yeccpars2_122_(Stack), yeccgoto_ptype(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_123/7}). -compile({nowarn_unused_function, yeccpars2_123/7}). yeccpars2_123(S, '#', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 34, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 35, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, '//', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 36, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, '<<', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 37, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, '[', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 38, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 39, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, float, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 40, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 41, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 42, Ss, Stack, T, Ts, Tzr); yeccpars2_123(S, '{', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 43, Ss, Stack, T, Ts, Tzr); yeccpars2_123(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_123_(Stack), yeccpars2_124(124, Cat, [123 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_124/7}). -compile({nowarn_unused_function, yeccpars2_124/7}). yeccpars2_124(S, ')', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 125, Ss, Stack, T, Ts, Tzr); yeccpars2_124(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 46, Ss, Stack, T, Ts, Tzr); yeccpars2_124(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_125/7}). -compile({nowarn_unused_function, yeccpars2_125/7}). yeccpars2_125(S, '=', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 126, Ss, Stack, T, Ts, Tzr); yeccpars2_125(_, _, _, _, T, _, _) -> yeccerror(T). %% yeccpars2_126: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_127/7}). -compile({nowarn_unused_function, yeccpars2_127/7}). yeccpars2_127(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_,_|Nss] = Ss, NewStack = yeccpars2_127_(Stack), yeccgoto_def(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_128/7}). -compile({nowarn_unused_function, yeccpars2_128/7}). yeccpars2_128(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_128(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_128(S, where, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 22, Ss, Stack, T, Ts, Tzr); yeccpars2_128(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_128_(Stack), yeccpars2_17(_S, Cat, [128 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_129/7}). -compile({nowarn_unused_function, yeccpars2_129/7}). yeccpars2_129(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_|Nss] = Ss, NewStack = yeccpars2_129_(Stack), yeccgoto_typedef(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_130/7}). -compile({nowarn_unused_function, yeccpars2_130/7}). yeccpars2_130(S, ',', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 132, Ss, Stack, T, Ts, Tzr); yeccpars2_130(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_130(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_130(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_130_(Stack), yeccgoto_defs(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_131/7}). -compile({nowarn_unused_function, yeccpars2_131/7}). yeccpars2_131(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_131_(Stack), yeccgoto_defs2(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_132/7}). -compile({nowarn_unused_function, yeccpars2_132/7}). yeccpars2_132(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_132(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_132(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_133/7}). -compile({nowarn_unused_function, yeccpars2_133/7}). yeccpars2_133(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_133_(Stack), yeccgoto_defs2(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_134/7}). -compile({nowarn_unused_function, yeccpars2_134/7}). yeccpars2_134(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_134_(Stack), yeccgoto_etype(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_135/7}). -compile({nowarn_unused_function, yeccpars2_135/7}). yeccpars2_135(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_135_(Stack), yeccgoto_start(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_136/7}). -compile({nowarn_unused_function, yeccpars2_136/7}). yeccpars2_136(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_136(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_136(S, where, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 22, Ss, Stack, T, Ts, Tzr); yeccpars2_136(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_136_(Stack), yeccpars2_17(_S, Cat, [136 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_137/7}). -compile({nowarn_unused_function, yeccpars2_137/7}). yeccpars2_137(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_137_(Stack), yeccgoto_throws(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_138/7}). -compile({nowarn_unused_function, yeccpars2_138/7}). yeccpars2_138(S, '->', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 146, Ss, Stack, T, Ts, Tzr); yeccpars2_138(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_139/7}). -compile({nowarn_unused_function, yeccpars2_139/7}). yeccpars2_139(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_139_(Stack), yeccgoto_start(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). %% yeccpars2_140: see yeccpars2_90 -dialyzer({nowarn_function, yeccpars2_141/7}). -compile({nowarn_unused_function, yeccpars2_141/7}). yeccpars2_141(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_141(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_141(S, where, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 22, Ss, Stack, T, Ts, Tzr); yeccpars2_141(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_141_(Stack), yeccpars2_17(_S, Cat, [141 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_142/7}). -compile({nowarn_unused_function, yeccpars2_142/7}). yeccpars2_142(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_142_(Stack), yeccgoto_function_name(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_143/7}). -compile({nowarn_unused_function, yeccpars2_143/7}). yeccpars2_143(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_143_(Stack), yeccgoto_spec(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_144/7}). -compile({nowarn_unused_function, yeccpars2_144/7}). yeccpars2_144(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 20, Ss, Stack, T, Ts, Tzr); yeccpars2_144(S, var, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 21, Ss, Stack, T, Ts, Tzr); yeccpars2_144(S, where, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 22, Ss, Stack, T, Ts, Tzr); yeccpars2_144(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_144_(Stack), yeccpars2_17(_S, Cat, [144 | Ss], NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_145/7}). -compile({nowarn_unused_function, yeccpars2_145/7}). yeccpars2_145(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_145_(Stack), yeccgoto_spec(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). %% yeccpars2_146: see yeccpars2_4 -dialyzer({nowarn_function, yeccpars2_147/7}). -compile({nowarn_unused_function, yeccpars2_147/7}). yeccpars2_147(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_147_(Stack), yeccgoto_func_type(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_148/7}). -compile({nowarn_unused_function, yeccpars2_148/7}). yeccpars2_148(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_148_(Stack), yeccgoto_start(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_149/7}). -compile({nowarn_unused_function, yeccpars2_149/7}). yeccpars2_149(S, '.', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 88, Ss, Stack, T, Ts, Tzr); yeccpars2_149(S, ':', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 162, Ss, Stack, T, Ts, Tzr); yeccpars2_149(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_149_(Stack), yeccgoto_mref(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_150/7}). -compile({nowarn_unused_function, yeccpars2_150/7}). yeccpars2_150(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_150_(Stack), yeccgoto_ref(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_151/7}). -compile({nowarn_unused_function, yeccpars2_151/7}). yeccpars2_151(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_151_(Stack), yeccgoto_ref(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_152/7}). -compile({nowarn_unused_function, yeccpars2_152/7}). yeccpars2_152(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_152_(Stack), yeccgoto_ref(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_153/7}). -compile({nowarn_unused_function, yeccpars2_153/7}). yeccpars2_153(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 159, Ss, Stack, T, Ts, Tzr); yeccpars2_153(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_154/7}). -compile({nowarn_unused_function, yeccpars2_154/7}). yeccpars2_154(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 155, Ss, Stack, T, Ts, Tzr); yeccpars2_154(S, '/', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 156, Ss, Stack, T, Ts, Tzr); yeccpars2_154(_S, Cat, Ss, Stack, T, Ts, Tzr) -> NewStack = yeccpars2_154_(Stack), yeccgoto_qname(hd(Ss), Cat, Ss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_155/7}). -compile({nowarn_unused_function, yeccpars2_155/7}). yeccpars2_155(S, ')', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 158, Ss, Stack, T, Ts, Tzr); yeccpars2_155(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_156/7}). -compile({nowarn_unused_function, yeccpars2_156/7}). yeccpars2_156(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 157, Ss, Stack, T, Ts, Tzr); yeccpars2_156(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_157/7}). -compile({nowarn_unused_function, yeccpars2_157/7}). yeccpars2_157(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_157_(Stack), yeccgoto_lref(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_158/7}). -compile({nowarn_unused_function, yeccpars2_158/7}). yeccpars2_158(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_|Nss] = Ss, NewStack = yeccpars2_158_(Stack), yeccgoto_lref(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_159/7}). -compile({nowarn_unused_function, yeccpars2_159/7}). yeccpars2_159(S, '/', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 160, Ss, Stack, T, Ts, Tzr); yeccpars2_159(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_|Nss] = Ss, NewStack = yeccpars2_159_(Stack), yeccgoto_aref(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). %% yeccpars2_160: see yeccpars2_85 -dialyzer({nowarn_function, yeccpars2_161/7}). -compile({nowarn_unused_function, yeccpars2_161/7}). yeccpars2_161(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_|Nss] = Ss, NewStack = yeccpars2_161_(Stack), yeccgoto_aref(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_162/7}). -compile({nowarn_unused_function, yeccpars2_162/7}). yeccpars2_162(S, atom, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 163, Ss, Stack, T, Ts, Tzr); yeccpars2_162(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_163/7}). -compile({nowarn_unused_function, yeccpars2_163/7}). yeccpars2_163(S, '(', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 164, Ss, Stack, T, Ts, Tzr); yeccpars2_163(S, '/', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 165, Ss, Stack, T, Ts, Tzr); yeccpars2_163(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_164/7}). -compile({nowarn_unused_function, yeccpars2_164/7}). yeccpars2_164(S, ')', Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 167, Ss, Stack, T, Ts, Tzr); yeccpars2_164(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_165/7}). -compile({nowarn_unused_function, yeccpars2_165/7}). yeccpars2_165(S, integer, Ss, Stack, T, Ts, Tzr) -> yeccpars1(S, 166, Ss, Stack, T, Ts, Tzr); yeccpars2_165(_, _, _, _, T, _, _) -> yeccerror(T). -dialyzer({nowarn_function, yeccpars2_166/7}). -compile({nowarn_unused_function, yeccpars2_166/7}). yeccpars2_166(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_|Nss] = Ss, NewStack = yeccpars2_166_(Stack), yeccgoto_mref(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccpars2_167/7}). -compile({nowarn_unused_function, yeccpars2_167/7}). yeccpars2_167(_S, Cat, Ss, Stack, T, Ts, Tzr) -> [_,_,_,_|Nss] = Ss, NewStack = yeccpars2_167_(Stack), yeccgoto_mref(hd(Nss), Cat, Nss, NewStack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_aref/7}). -compile({nowarn_unused_function, yeccgoto_aref/7}). yeccgoto_aref(2=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_152(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_bin_base_type/7}). -compile({nowarn_unused_function, yeccgoto_bin_base_type/7}). yeccgoto_bin_base_type(37, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_69(69, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_bin_unit_type/7}). -compile({nowarn_unused_function, yeccgoto_bin_unit_type/7}). yeccgoto_bin_unit_type(37, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_68(68, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_bin_unit_type(77, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_79(79, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_def/7}). -compile({nowarn_unused_function, yeccgoto_def/7}). yeccgoto_def(8=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_18(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_def(22=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_18(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_def(128=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_18(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_def(130=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_131(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_def(132=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_133(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_def(136=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_18(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_def(141=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_18(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_def(144=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_18(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_defs/7}). -compile({nowarn_unused_function, yeccgoto_defs/7}). yeccgoto_defs(8=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_17(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_defs(22=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_23(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_defs(128=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_17(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_defs(136=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_17(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_defs(141=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_17(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_defs(144=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_17(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_defs2/7}). -compile({nowarn_unused_function, yeccgoto_defs2/7}). yeccgoto_defs2(18, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_130(130, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_etype/7}). -compile({nowarn_unused_function, yeccgoto_etype/7}). yeccgoto_etype(4, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_136(136, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_field/7}). -compile({nowarn_unused_function, yeccgoto_field/7}). yeccgoto_field(107=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_109(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_field(114=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_116(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_fields/7}). -compile({nowarn_unused_function, yeccgoto_fields/7}). yeccgoto_fields(107, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_108(108, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_func_type/7}). -compile({nowarn_unused_function, yeccgoto_func_type/7}). yeccgoto_func_type(3, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_141(141, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_func_type(140, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_144(144, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_function_name/7}). -compile({nowarn_unused_function, yeccgoto_function_name/7}). yeccgoto_function_name(3, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_90(140, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_futype_list/7}). -compile({nowarn_unused_function, yeccgoto_futype_list/7}). yeccgoto_futype_list(4, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(19, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(24, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(35, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(38, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(43, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(46, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(49, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(52, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(53, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(59, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(96, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(100, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(101, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(104, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(112, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(117, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(123, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(126, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_futype_list(146, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_33(33, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_lref/7}). -compile({nowarn_unused_function, yeccgoto_lref/7}). yeccgoto_lref(2=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_151(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_mref/7}). -compile({nowarn_unused_function, yeccgoto_mref/7}). yeccgoto_mref(2=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_150(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_mref(160=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_161(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_nutype/7}). -compile({nowarn_unused_function, yeccgoto_nutype/7}). yeccgoto_nutype(4, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(19, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(24, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(35, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(38, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(43, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(46, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(59, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(96, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(100, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(101, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(104, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(112, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(123, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(126, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_nutype(146, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_32(32, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_ptype/7}). -compile({nowarn_unused_function, yeccgoto_ptype/7}). yeccgoto_ptype(4=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(19=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(24=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(35=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(38=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(43=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(46=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(49=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(52=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_55(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(53=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_54(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(59=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(96=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(100=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(101=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(104=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(112=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(117=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_118(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(123=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(126=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptype(146=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_31(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_ptypes/7}). -compile({nowarn_unused_function, yeccgoto_ptypes/7}). yeccgoto_ptypes(4, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(19, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(24, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(35, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(38, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(43, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(46, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(49, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_50(50, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(59, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(96, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(100, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(101, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(104, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(112, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(123, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(126, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_ptypes(146, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_30(30, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_qname/7}). -compile({nowarn_unused_function, yeccgoto_qname/7}). yeccgoto_qname(2, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_149(149, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(4, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(19, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(24, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(35, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(38, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(43, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(46, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(49, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(52, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(53, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(59, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(85, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_86(86, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(96, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(100, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(101, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(104, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(112, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(117, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(123, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(126, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(146, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_29(29, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_qname(160, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_149(149, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_ref/7}). -compile({nowarn_unused_function, yeccgoto_ref/7}). yeccgoto_ref(2=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_148(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_spec/7}). -compile({nowarn_unused_function, yeccgoto_spec/7}). yeccgoto_spec(3=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_139(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_start/7}). -compile({nowarn_unused_function, yeccgoto_start/7}). yeccgoto_start(0, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_1(1, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_throws/7}). -compile({nowarn_unused_function, yeccgoto_throws/7}). yeccgoto_throws(4=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_135(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_typedef/7}). -compile({nowarn_unused_function, yeccgoto_typedef/7}). yeccgoto_typedef(5=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_6(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_utype/7}). -compile({nowarn_unused_function, yeccgoto_utype/7}). yeccgoto_utype(4=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_134(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(19, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_128(128, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(24=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_28(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(35=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_45(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(38, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_62(62, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(43=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_45(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(46=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_48(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(59=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_45(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(96, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_99(99, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(100=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_103(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(101=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_102(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(104, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_99(99, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(112=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_113(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(123=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_45(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(126=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_127(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype(146=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_147(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_utype_list/7}). -compile({nowarn_unused_function, yeccgoto_utype_list/7}). yeccgoto_utype_list(3, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_138(138, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(4=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(19=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(24=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(35=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(38=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(39=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_58(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(43=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(46=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(49=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(52=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(53=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(59=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(90=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_91(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(96=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(100=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(101=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(104=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(112=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(117=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(121=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_122(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(123=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(126=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(140, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_138(138, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_list(146=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_27(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_utype_map/7}). -compile({nowarn_unused_function, yeccgoto_utype_map/7}). yeccgoto_utype_map(4=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(19=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(24=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(35=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(38=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(43=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(46=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(49=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(52=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(53=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(59=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(96=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(100=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(101=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(104=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(112=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(117=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(123=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(126=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map(146=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_26(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_utype_map_field/7}). -compile({nowarn_unused_function, yeccgoto_utype_map_field/7}). yeccgoto_utype_map_field(96=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_98(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_map_field(104=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_106(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_utype_map_fields/7}). -compile({nowarn_unused_function, yeccgoto_utype_map_fields/7}). yeccgoto_utype_map_fields(96, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_97(97, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_utype_tuple/7}). -compile({nowarn_unused_function, yeccgoto_utype_tuple/7}). yeccgoto_utype_tuple(4=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(19=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(24=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(35=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(38=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(43=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(46=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(49=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(52=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(53=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(59=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(96=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(100=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(101=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(104=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(112=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(117=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(123=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(126=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utype_tuple(146=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_25(_S, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_utypes/7}). -compile({nowarn_unused_function, yeccgoto_utypes/7}). yeccgoto_utypes(35, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_60(60, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utypes(43, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_44(44, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utypes(59, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_60(60, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_utypes(123, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_124(124, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_var_list/7}). -compile({nowarn_unused_function, yeccgoto_var_list/7}). yeccgoto_var_list(7, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_8(8, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_vars/7}). -compile({nowarn_unused_function, yeccgoto_vars/7}). yeccgoto_vars(9, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_10(10, Cat, Ss, Stack, T, Ts, Tzr). -dialyzer({nowarn_function, yeccgoto_where_defs/7}). -compile({nowarn_unused_function, yeccgoto_where_defs/7}). yeccgoto_where_defs(8=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_16(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_where_defs(128=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_129(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_where_defs(136=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_137(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_where_defs(141=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_143(_S, Cat, Ss, Stack, T, Ts, Tzr); yeccgoto_where_defs(144=_S, Cat, Ss, Stack, T, Ts, Tzr) -> yeccpars2_145(_S, Cat, Ss, Stack, T, Ts, Tzr). -compile({inline,yeccpars2_6_/1}). -dialyzer({nowarn_function, yeccpars2_6_/1}). -compile({nowarn_unused_function, yeccpars2_6_/1}). -file("edoc_parser.yrl", 47). yeccpars2_6_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin ___2 end | __Stack]. -compile({inline,yeccpars2_8_/1}). -dialyzer({nowarn_function, yeccpars2_8_/1}). -compile({nowarn_unused_function, yeccpars2_8_/1}). -file("edoc_parser.yrl", 180). yeccpars2_8_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_11_/1}). -dialyzer({nowarn_function, yeccpars2_11_/1}). -compile({nowarn_unused_function, yeccpars2_11_/1}). -file("edoc_parser.yrl", 194). yeccpars2_11_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin [] end | __Stack]. -compile({inline,yeccpars2_12_/1}). -dialyzer({nowarn_function, yeccpars2_12_/1}). -compile({nowarn_unused_function, yeccpars2_12_/1}). -file("edoc_parser.yrl", 198). yeccpars2_12_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [#t_var{name = tok_val(___1)}] end | __Stack]. -compile({inline,yeccpars2_13_/1}). -dialyzer({nowarn_function, yeccpars2_13_/1}). -compile({nowarn_unused_function, yeccpars2_13_/1}). -file("edoc_parser.yrl", 195). yeccpars2_13_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin lists:reverse(___2) end | __Stack]. -compile({inline,yeccpars2_15_/1}). -dialyzer({nowarn_function, yeccpars2_15_/1}). -compile({nowarn_unused_function, yeccpars2_15_/1}). -file("edoc_parser.yrl", 199). yeccpars2_15_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [#t_var{name = tok_val(___3)} | ___1] end | __Stack]. -compile({inline,yeccpars2_16_/1}). -dialyzer({nowarn_function, yeccpars2_16_/1}). -compile({nowarn_unused_function, yeccpars2_16_/1}). -file("edoc_parser.yrl", 201). yeccpars2_16_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_typedef{name = #t_name{name = tok_val(___1)}, args = ___2, defs = ___3} end | __Stack]. -compile({inline,yeccpars2_17_/1}). -dialyzer({nowarn_function, yeccpars2_17_/1}). -compile({nowarn_unused_function, yeccpars2_17_/1}). -file("edoc_parser.yrl", 60). yeccpars2_17_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin ___1 end | __Stack]. -compile({inline,yeccpars2_18_/1}). -dialyzer({nowarn_function, yeccpars2_18_/1}). -compile({nowarn_unused_function, yeccpars2_18_/1}). -file("edoc_parser.yrl", 184). yeccpars2_18_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_22_/1}). -dialyzer({nowarn_function, yeccpars2_22_/1}). -compile({nowarn_unused_function, yeccpars2_22_/1}). -file("edoc_parser.yrl", 180). yeccpars2_22_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_23_/1}). -dialyzer({nowarn_function, yeccpars2_23_/1}). -compile({nowarn_unused_function, yeccpars2_23_/1}). -file("edoc_parser.yrl", 59). yeccpars2_23_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin ___2 end | __Stack]. -compile({inline,yeccpars2_25_/1}). -dialyzer({nowarn_function, yeccpars2_25_/1}). -compile({nowarn_unused_function, yeccpars2_25_/1}). -file("edoc_parser.yrl", 111). yeccpars2_25_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_tuple{types = ___1} end | __Stack]. -compile({inline,yeccpars2_26_/1}). -dialyzer({nowarn_function, yeccpars2_26_/1}). -compile({nowarn_unused_function, yeccpars2_26_/1}). -file("edoc_parser.yrl", 112). yeccpars2_26_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_map{types = ___1} end | __Stack]. -compile({inline,'yeccpars2_27_\'$end\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\'$end\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\'$end\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\'$end\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\')\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\')\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\')\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\')\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\'+\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\'+\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\'+\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\'+\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\',\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\',\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\',\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\',\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\':=\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\':=\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\':=\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\':=\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\'=>\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\'=>\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\'=>\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\'=>\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\']\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\']\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\']\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\']\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,yeccpars2_27_atom/1}). -dialyzer({nowarn_function, yeccpars2_27_atom/1}). -compile({nowarn_unused_function, yeccpars2_27_atom/1}). -file("edoc_parser.yrl", 116). yeccpars2_27_atom(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,yeccpars2_27_string/1}). -dialyzer({nowarn_function, yeccpars2_27_string/1}). -compile({nowarn_unused_function, yeccpars2_27_string/1}). -file("edoc_parser.yrl", 116). yeccpars2_27_string(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,yeccpars2_27_var/1}). -dialyzer({nowarn_function, yeccpars2_27_var/1}). -compile({nowarn_unused_function, yeccpars2_27_var/1}). -file("edoc_parser.yrl", 116). yeccpars2_27_var(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,yeccpars2_27_where/1}). -dialyzer({nowarn_function, yeccpars2_27_where/1}). -compile({nowarn_unused_function, yeccpars2_27_where/1}). -file("edoc_parser.yrl", 116). yeccpars2_27_where(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\'|\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\'|\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\'|\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\'|\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,'yeccpars2_27_\'}\''/1}). -dialyzer({nowarn_function, 'yeccpars2_27_\'}\''/1}). -compile({nowarn_unused_function, 'yeccpars2_27_\'}\''/1}). -file("edoc_parser.yrl", 116). 'yeccpars2_27_\'}\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin if length(element(1, ___1)) == 1 -> %% there must be exactly one utype in the list #t_paren{type = hd(element(1, ___1))}; length(element(1, ___1)) == 0 -> return_error(element(2, ___1), "syntax error before: ')'"); true -> return_error(element(2, ___1), "syntax error before: ','") end end | __Stack]. -compile({inline,yeccpars2_27_/1}). -dialyzer({nowarn_function, yeccpars2_27_/1}). -compile({nowarn_unused_function, yeccpars2_27_/1}). -file("edoc_parser.yrl", 71). yeccpars2_27_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin ___1 end | __Stack]. -compile({inline,yeccpars2_28_/1}). -dialyzer({nowarn_function, yeccpars2_28_/1}). -compile({nowarn_unused_function, yeccpars2_28_/1}). -file("edoc_parser.yrl", 188). yeccpars2_28_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_def{name = #t_var{name = tok_val(___1)}, type = ___3} end | __Stack]. -compile({inline,yeccpars2_30_/1}). -dialyzer({nowarn_function, yeccpars2_30_/1}). -compile({nowarn_unused_function, yeccpars2_30_/1}). -file("edoc_parser.yrl", 98). yeccpars2_30_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin union(___1) end | __Stack]. -compile({inline,yeccpars2_31_/1}). -dialyzer({nowarn_function, yeccpars2_31_/1}). -compile({nowarn_unused_function, yeccpars2_31_/1}). -file("edoc_parser.yrl", 101). yeccpars2_31_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [___1] end | __Stack]. -compile({inline,yeccpars2_32_/1}). -dialyzer({nowarn_function, yeccpars2_32_/1}). -compile({nowarn_unused_function, yeccpars2_32_/1}). -file("edoc_parser.yrl", 95). yeccpars2_32_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin ___1 end | __Stack]. -compile({inline,yeccpars2_35_/1}). -dialyzer({nowarn_function, yeccpars2_35_/1}). -compile({nowarn_unused_function, yeccpars2_35_/1}). -file("edoc_parser.yrl", 90). yeccpars2_35_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,'yeccpars2_39_\'$end\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\'$end\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\'$end\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\'$end\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\')\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\')\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\')\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\')\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\'+\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\'+\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\'+\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\'+\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\',\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\',\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\',\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\',\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\':=\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\':=\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\':=\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\':=\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\'=>\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\'=>\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\'=>\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\'=>\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\']\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\']\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\']\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\']\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_39_atom/1}). -dialyzer({nowarn_function, yeccpars2_39_atom/1}). -compile({nowarn_unused_function, yeccpars2_39_atom/1}). -file("edoc_parser.yrl", 106). yeccpars2_39_atom(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_39_string/1}). -dialyzer({nowarn_function, yeccpars2_39_string/1}). -compile({nowarn_unused_function, yeccpars2_39_string/1}). -file("edoc_parser.yrl", 106). yeccpars2_39_string(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_39_var/1}). -dialyzer({nowarn_function, yeccpars2_39_var/1}). -compile({nowarn_unused_function, yeccpars2_39_var/1}). -file("edoc_parser.yrl", 106). yeccpars2_39_var(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_39_where/1}). -dialyzer({nowarn_function, yeccpars2_39_where/1}). -compile({nowarn_unused_function, yeccpars2_39_where/1}). -file("edoc_parser.yrl", 106). yeccpars2_39_where(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\'|\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\'|\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\'|\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\'|\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,'yeccpars2_39_\'}\''/1}). -dialyzer({nowarn_function, 'yeccpars2_39_\'}\''/1}). -compile({nowarn_unused_function, 'yeccpars2_39_\'}\''/1}). -file("edoc_parser.yrl", 106). 'yeccpars2_39_\'}\''(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_atom{val = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_39_/1}). -dialyzer({nowarn_function, yeccpars2_39_/1}). -compile({nowarn_unused_function, yeccpars2_39_/1}). -file("edoc_parser.yrl", 51). yeccpars2_39_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [tok_val(___1)] end | __Stack]. -compile({inline,yeccpars2_40_/1}). -dialyzer({nowarn_function, yeccpars2_40_/1}). -compile({nowarn_unused_function, yeccpars2_40_/1}). -file("edoc_parser.yrl", 110). yeccpars2_40_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_float{val = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_41_/1}). -dialyzer({nowarn_function, yeccpars2_41_/1}). -compile({nowarn_unused_function, yeccpars2_41_/1}). -file("edoc_parser.yrl", 107). yeccpars2_41_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_integer{val = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_42_/1}). -dialyzer({nowarn_function, yeccpars2_42_/1}). -compile({nowarn_unused_function, yeccpars2_42_/1}). -file("edoc_parser.yrl", 105). yeccpars2_42_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_var{name = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_43_/1}). -dialyzer({nowarn_function, yeccpars2_43_/1}). -compile({nowarn_unused_function, yeccpars2_43_/1}). -file("edoc_parser.yrl", 90). yeccpars2_43_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_45_/1}). -dialyzer({nowarn_function, yeccpars2_45_/1}). -compile({nowarn_unused_function, yeccpars2_45_/1}). -file("edoc_parser.yrl", 91). yeccpars2_45_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [___1] end | __Stack]. -compile({inline,yeccpars2_47_/1}). -dialyzer({nowarn_function, yeccpars2_47_/1}). -compile({nowarn_unused_function, yeccpars2_47_/1}). -file("edoc_parser.yrl", 87). yeccpars2_47_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin lists:reverse(___2) end | __Stack]. -compile({inline,yeccpars2_48_/1}). -dialyzer({nowarn_function, yeccpars2_48_/1}). -compile({nowarn_unused_function, yeccpars2_48_/1}). -file("edoc_parser.yrl", 92). yeccpars2_48_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [___3 | ___1] end | __Stack]. -compile({inline,yeccpars2_50_/1}). -dialyzer({nowarn_function, yeccpars2_50_/1}). -compile({nowarn_unused_function, yeccpars2_50_/1}). -file("edoc_parser.yrl", 97). yeccpars2_50_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin annotate(union(___3), tok_val(___1)) end | __Stack]. -compile({inline,yeccpars2_51_/1}). -dialyzer({nowarn_function, yeccpars2_51_/1}). -compile({nowarn_unused_function, yeccpars2_51_/1}). -file("edoc_parser.yrl", 105). yeccpars2_51_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_var{name = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_54_/1}). -dialyzer({nowarn_function, yeccpars2_54_/1}). -compile({nowarn_unused_function, yeccpars2_54_/1}). -file("edoc_parser.yrl", 103). yeccpars2_54_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [___3 | ___1] end | __Stack]. -compile({inline,yeccpars2_55_/1}). -dialyzer({nowarn_function, yeccpars2_55_/1}). -compile({nowarn_unused_function, yeccpars2_55_/1}). -file("edoc_parser.yrl", 102). yeccpars2_55_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [___3 | ___1] end | __Stack]. -compile({inline,yeccpars2_57_/1}). -dialyzer({nowarn_function, yeccpars2_57_/1}). -compile({nowarn_unused_function, yeccpars2_57_/1}). -file("edoc_parser.yrl", 108). yeccpars2_57_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_integer_range{from = tok_val(___1), to = tok_val(___3)} end | __Stack]. -compile({inline,yeccpars2_58_/1}). -dialyzer({nowarn_function, yeccpars2_58_/1}). -compile({nowarn_unused_function, yeccpars2_58_/1}). -file("edoc_parser.yrl", 132). yeccpars2_58_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin case {tok_val(___1), element(1, ___2)} of {nil, []} -> %% Prefer '[]' before 'nil(). Due to %% compatibility with Erlang types, which do not %% separate '[]' from 'nil()'. #t_nil{}; {list, [T]} -> %% Prefer '[T]' before 'list(T). Due to %% compatibility with Erlang types, which do not %% separate '[T]' from 'list(T)'. #t_list{type = T}; {'fun', [#t_fun{}=Fun]} -> %% An incompatible change as compared to EDOc 0.7.6.6. %% Due to compatibility with Erlang types. Fun; {'fun', []} -> #t_type{name = #t_name{name = function}}; {Name, Args} -> #t_type{name = #t_name{name = Name}, args = Args} end end | __Stack]. -compile({inline,yeccpars2_59_/1}). -dialyzer({nowarn_function, yeccpars2_59_/1}). -compile({nowarn_unused_function, yeccpars2_59_/1}). -file("edoc_parser.yrl", 90). yeccpars2_59_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_61_/1}). -dialyzer({nowarn_function, yeccpars2_61_/1}). -compile({nowarn_unused_function, yeccpars2_61_/1}). -file("edoc_parser.yrl", 69). yeccpars2_61_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin {lists:reverse(___2), tok_line(___1)} end | __Stack]. -compile({inline,yeccpars2_63_/1}). -dialyzer({nowarn_function, yeccpars2_63_/1}). -compile({nowarn_unused_function, yeccpars2_63_/1}). -file("edoc_parser.yrl", 113). yeccpars2_63_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin #t_nil{} end | __Stack]. -compile({inline,yeccpars2_65_/1}). -dialyzer({nowarn_function, yeccpars2_65_/1}). -compile({nowarn_unused_function, yeccpars2_65_/1}). -file("edoc_parser.yrl", 114). yeccpars2_65_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_list{type = ___2} end | __Stack]. -compile({inline,yeccpars2_67_/1}). -dialyzer({nowarn_function, yeccpars2_67_/1}). -compile({nowarn_unused_function, yeccpars2_67_/1}). -file("edoc_parser.yrl", 115). yeccpars2_67_(__Stack0) -> [___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin #t_nonempty_list{type = ___2} end | __Stack]. -compile({inline,yeccpars2_70_/1}). -dialyzer({nowarn_function, yeccpars2_70_/1}). -compile({nowarn_unused_function, yeccpars2_70_/1}). -file("edoc_parser.yrl", 163). yeccpars2_70_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin #t_binary{} end | __Stack]. -compile({inline,yeccpars2_74_/1}). -dialyzer({nowarn_function, yeccpars2_74_/1}). -compile({nowarn_unused_function, yeccpars2_74_/1}). -file("edoc_parser.yrl", 169). yeccpars2_74_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin tok_val(___3) end | __Stack]. -compile({inline,yeccpars2_76_/1}). -dialyzer({nowarn_function, yeccpars2_76_/1}). -compile({nowarn_unused_function, yeccpars2_76_/1}). -file("edoc_parser.yrl", 171). yeccpars2_76_(__Stack0) -> [___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin tok_val(___5) end | __Stack]. -compile({inline,yeccpars2_78_/1}). -dialyzer({nowarn_function, yeccpars2_78_/1}). -compile({nowarn_unused_function, yeccpars2_78_/1}). -file("edoc_parser.yrl", 164). yeccpars2_78_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_binary{base_size = ___2} end | __Stack]. -compile({inline,yeccpars2_82_/1}). -dialyzer({nowarn_function, yeccpars2_82_/1}). -compile({nowarn_unused_function, yeccpars2_82_/1}). -file("edoc_parser.yrl", 166). yeccpars2_82_(__Stack0) -> [___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin #t_binary{base_size = ___2, unit_size = ___4} end | __Stack]. -compile({inline,yeccpars2_83_/1}). -dialyzer({nowarn_function, yeccpars2_83_/1}). -compile({nowarn_unused_function, yeccpars2_83_/1}). -file("edoc_parser.yrl", 165). yeccpars2_83_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_binary{unit_size = ___2} end | __Stack]. -compile({inline,yeccpars2_87_/1}). -dialyzer({nowarn_function, yeccpars2_87_/1}). -compile({nowarn_unused_function, yeccpars2_87_/1}). -file("edoc_parser.yrl", 51). yeccpars2_87_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [tok_val(___1)] end | __Stack]. -compile({inline,yeccpars2_91_/1}). -dialyzer({nowarn_function, yeccpars2_91_/1}). -compile({nowarn_unused_function, yeccpars2_91_/1}). -file("edoc_parser.yrl", 158). yeccpars2_91_(__Stack0) -> [___7,___6,___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin #t_type{name = #t_name{app = tok_val(___2), module = qname(___4), name = tok_val(___6)}, args = element(1, ___7)} end | __Stack]. -compile({inline,yeccpars2_92_/1}). -dialyzer({nowarn_function, yeccpars2_92_/1}). -compile({nowarn_unused_function, yeccpars2_92_/1}). -file("edoc_parser.yrl", 52). yeccpars2_92_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [tok_val(___3) | ___1] end | __Stack]. -compile({inline,yeccpars2_94_/1}). -dialyzer({nowarn_function, yeccpars2_94_/1}). -compile({nowarn_unused_function, yeccpars2_94_/1}). -file("edoc_parser.yrl", 72). yeccpars2_94_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin {[#t_var{name = '...'}], tok_line(___1)} end | __Stack]. -compile({inline,yeccpars2_96_/1}). -dialyzer({nowarn_function, yeccpars2_96_/1}). -compile({nowarn_unused_function, yeccpars2_96_/1}). -file("edoc_parser.yrl", 76). yeccpars2_96_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_98_/1}). -dialyzer({nowarn_function, yeccpars2_98_/1}). -compile({nowarn_unused_function, yeccpars2_98_/1}). -file("edoc_parser.yrl", 77). yeccpars2_98_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [___1] end | __Stack]. -compile({inline,yeccpars2_102_/1}). -dialyzer({nowarn_function, yeccpars2_102_/1}). -compile({nowarn_unused_function, yeccpars2_102_/1}). -file("edoc_parser.yrl", 80). yeccpars2_102_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_map_field{assoc_type = assoc, k_type = ___1, v_type = ___3} end | __Stack]. -compile({inline,yeccpars2_103_/1}). -dialyzer({nowarn_function, yeccpars2_103_/1}). -compile({nowarn_unused_function, yeccpars2_103_/1}). -file("edoc_parser.yrl", 83). yeccpars2_103_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_map_field{assoc_type = exact, k_type = ___1, v_type = ___3} end | __Stack]. -compile({inline,yeccpars2_105_/1}). -dialyzer({nowarn_function, yeccpars2_105_/1}). -compile({nowarn_unused_function, yeccpars2_105_/1}). -file("edoc_parser.yrl", 74). yeccpars2_105_(__Stack0) -> [___4,___3,___2,___1 | __Stack] = __Stack0, [begin lists:reverse(___3) end | __Stack]. -compile({inline,yeccpars2_106_/1}). -dialyzer({nowarn_function, yeccpars2_106_/1}). -compile({nowarn_unused_function, yeccpars2_106_/1}). -file("edoc_parser.yrl", 78). yeccpars2_106_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [___3 | ___1] end | __Stack]. -compile({inline,yeccpars2_109_/1}). -dialyzer({nowarn_function, yeccpars2_109_/1}). -compile({nowarn_unused_function, yeccpars2_109_/1}). -file("edoc_parser.yrl", 174). yeccpars2_109_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [___1] end | __Stack]. -compile({inline,yeccpars2_111_/1}). -dialyzer({nowarn_function, yeccpars2_111_/1}). -compile({nowarn_unused_function, yeccpars2_111_/1}). -file("edoc_parser.yrl", 127). yeccpars2_111_(__Stack0) -> [___4,___3,___2,___1 | __Stack] = __Stack0, [begin #t_record{name = #t_atom{val = tok_val(___2)}} end | __Stack]. -compile({inline,yeccpars2_113_/1}). -dialyzer({nowarn_function, yeccpars2_113_/1}). -compile({nowarn_unused_function, yeccpars2_113_/1}). -file("edoc_parser.yrl", 177). yeccpars2_113_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_field{name = #t_atom{val = tok_val(___1)}, type = ___3} end | __Stack]. -compile({inline,yeccpars2_115_/1}). -dialyzer({nowarn_function, yeccpars2_115_/1}). -compile({nowarn_unused_function, yeccpars2_115_/1}). -file("edoc_parser.yrl", 129). yeccpars2_115_(__Stack0) -> [___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin #t_record{name = #t_atom{val = tok_val(___2)}, fields = lists:reverse(___4)} end | __Stack]. -compile({inline,yeccpars2_116_/1}). -dialyzer({nowarn_function, yeccpars2_116_/1}). -compile({nowarn_unused_function, yeccpars2_116_/1}). -file("edoc_parser.yrl", 175). yeccpars2_116_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [___3 | ___1] end | __Stack]. -compile({inline,yeccpars2_118_/1}). -dialyzer({nowarn_function, yeccpars2_118_/1}). -compile({nowarn_unused_function, yeccpars2_118_/1}). -file("edoc_parser.yrl", 125). yeccpars2_118_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_fun{args = element(1, ___1), range = ___3} end | __Stack]. -compile({inline,yeccpars2_119_/1}). -dialyzer({nowarn_function, yeccpars2_119_/1}). -compile({nowarn_unused_function, yeccpars2_119_/1}). -file("edoc_parser.yrl", 94). yeccpars2_119_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin annotate(___1, tok_val(___2)) end | __Stack]. -compile({inline,yeccpars2_122_/1}). -dialyzer({nowarn_function, yeccpars2_122_/1}). -compile({nowarn_unused_function, yeccpars2_122_/1}). -file("edoc_parser.yrl", 154). yeccpars2_122_(__Stack0) -> [___4,___3,___2,___1 | __Stack] = __Stack0, [begin #t_type{name = #t_name{module = qname(___1), name = tok_val(___3)}, args = element(1, ___4)} end | __Stack]. -compile({inline,yeccpars2_123_/1}). -dialyzer({nowarn_function, yeccpars2_123_/1}). -compile({nowarn_unused_function, yeccpars2_123_/1}). -file("edoc_parser.yrl", 90). yeccpars2_123_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_127_/1}). -dialyzer({nowarn_function, yeccpars2_127_/1}). -compile({nowarn_unused_function, yeccpars2_127_/1}). -file("edoc_parser.yrl", 191). yeccpars2_127_(__Stack0) -> [___6,___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin build_def(tok_val(___1), ___2, ___3, ___6) end | __Stack]. -compile({inline,yeccpars2_128_/1}). -dialyzer({nowarn_function, yeccpars2_128_/1}). -compile({nowarn_unused_function, yeccpars2_128_/1}). -file("edoc_parser.yrl", 180). yeccpars2_128_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_129_/1}). -dialyzer({nowarn_function, yeccpars2_129_/1}). -compile({nowarn_unused_function, yeccpars2_129_/1}). -file("edoc_parser.yrl", 205). yeccpars2_129_(__Stack0) -> [___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin #t_typedef{name = #t_name{name = tok_val(___1)}, args = ___2, type = ___4, defs = ___5} end | __Stack]. -compile({inline,yeccpars2_130_/1}). -dialyzer({nowarn_function, yeccpars2_130_/1}). -compile({nowarn_unused_function, yeccpars2_130_/1}). -file("edoc_parser.yrl", 181). yeccpars2_130_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin [___1 | lists:reverse(___2)] end | __Stack]. -compile({inline,yeccpars2_131_/1}). -dialyzer({nowarn_function, yeccpars2_131_/1}). -compile({nowarn_unused_function, yeccpars2_131_/1}). -file("edoc_parser.yrl", 185). yeccpars2_131_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin [___2 | ___1] end | __Stack]. -compile({inline,yeccpars2_133_/1}). -dialyzer({nowarn_function, yeccpars2_133_/1}). -compile({nowarn_unused_function, yeccpars2_133_/1}). -file("edoc_parser.yrl", 186). yeccpars2_133_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin [___3 | ___1] end | __Stack]. -compile({inline,yeccpars2_134_/1}). -dialyzer({nowarn_function, yeccpars2_134_/1}). -compile({nowarn_unused_function, yeccpars2_134_/1}). -file("edoc_parser.yrl", 236). yeccpars2_134_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin ___1 end | __Stack]. -compile({inline,yeccpars2_135_/1}). -dialyzer({nowarn_function, yeccpars2_135_/1}). -compile({nowarn_unused_function, yeccpars2_135_/1}). -file("edoc_parser.yrl", 46). yeccpars2_135_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin ___2 end | __Stack]. -compile({inline,yeccpars2_136_/1}). -dialyzer({nowarn_function, yeccpars2_136_/1}). -compile({nowarn_unused_function, yeccpars2_136_/1}). -file("edoc_parser.yrl", 180). yeccpars2_136_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_137_/1}). -dialyzer({nowarn_function, yeccpars2_137_/1}). -compile({nowarn_unused_function, yeccpars2_137_/1}). -file("edoc_parser.yrl", 238). yeccpars2_137_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin #t_throws{type = ___1, defs = ___2} end | __Stack]. -compile({inline,yeccpars2_139_/1}). -dialyzer({nowarn_function, yeccpars2_139_/1}). -compile({nowarn_unused_function, yeccpars2_139_/1}). -file("edoc_parser.yrl", 45). yeccpars2_139_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin ___2 end | __Stack]. -compile({inline,yeccpars2_141_/1}). -dialyzer({nowarn_function, yeccpars2_141_/1}). -compile({nowarn_unused_function, yeccpars2_141_/1}). -file("edoc_parser.yrl", 180). yeccpars2_141_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_142_/1}). -dialyzer({nowarn_function, yeccpars2_142_/1}). -compile({nowarn_unused_function, yeccpars2_142_/1}). -file("edoc_parser.yrl", 62). yeccpars2_142_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin #t_name{name = tok_val(___1)} end | __Stack]. -compile({inline,yeccpars2_143_/1}). -dialyzer({nowarn_function, yeccpars2_143_/1}). -compile({nowarn_unused_function, yeccpars2_143_/1}). -file("edoc_parser.yrl", 54). yeccpars2_143_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin #t_spec{type = ___1, defs = ___2} end | __Stack]. -compile({inline,yeccpars2_144_/1}). -dialyzer({nowarn_function, yeccpars2_144_/1}). -compile({nowarn_unused_function, yeccpars2_144_/1}). -file("edoc_parser.yrl", 180). yeccpars2_144_(__Stack0) -> [begin [] end | __Stack0]. -compile({inline,yeccpars2_145_/1}). -dialyzer({nowarn_function, yeccpars2_145_/1}). -compile({nowarn_unused_function, yeccpars2_145_/1}). -file("edoc_parser.yrl", 56). yeccpars2_145_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_spec{name = ___1, type = ___2, defs = ___3} end | __Stack]. -compile({inline,yeccpars2_147_/1}). -dialyzer({nowarn_function, yeccpars2_147_/1}). -compile({nowarn_unused_function, yeccpars2_147_/1}). -file("edoc_parser.yrl", 64). yeccpars2_147_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin #t_fun{args = element(1, ___1), range = ___3} end | __Stack]. -compile({inline,yeccpars2_148_/1}). -dialyzer({nowarn_function, yeccpars2_148_/1}). -compile({nowarn_unused_function, yeccpars2_148_/1}). -file("edoc_parser.yrl", 48). yeccpars2_148_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin ___2 end | __Stack]. -compile({inline,yeccpars2_149_/1}). -dialyzer({nowarn_function, yeccpars2_149_/1}). -compile({nowarn_unused_function, yeccpars2_149_/1}). -file("edoc_parser.yrl", 226). yeccpars2_149_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin edoc_refs:module(qname(___1)) end | __Stack]. -compile({inline,yeccpars2_150_/1}). -dialyzer({nowarn_function, yeccpars2_150_/1}). -compile({nowarn_unused_function, yeccpars2_150_/1}). -file("edoc_parser.yrl", 214). yeccpars2_150_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin ___1 end | __Stack]. -compile({inline,yeccpars2_151_/1}). -dialyzer({nowarn_function, yeccpars2_151_/1}). -compile({nowarn_unused_function, yeccpars2_151_/1}). -file("edoc_parser.yrl", 215). yeccpars2_151_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin ___1 end | __Stack]. -compile({inline,yeccpars2_152_/1}). -dialyzer({nowarn_function, yeccpars2_152_/1}). -compile({nowarn_unused_function, yeccpars2_152_/1}). -file("edoc_parser.yrl", 213). yeccpars2_152_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin ___1 end | __Stack]. -compile({inline,yeccpars2_154_/1}). -dialyzer({nowarn_function, yeccpars2_154_/1}). -compile({nowarn_unused_function, yeccpars2_154_/1}). -file("edoc_parser.yrl", 51). yeccpars2_154_(__Stack0) -> [___1 | __Stack] = __Stack0, [begin [tok_val(___1)] end | __Stack]. -compile({inline,yeccpars2_157_/1}). -dialyzer({nowarn_function, yeccpars2_157_/1}). -compile({nowarn_unused_function, yeccpars2_157_/1}). -file("edoc_parser.yrl", 229). yeccpars2_157_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin edoc_refs:function(tok_val(___1), tok_val(___3)) end | __Stack]. -compile({inline,yeccpars2_158_/1}). -dialyzer({nowarn_function, yeccpars2_158_/1}). -compile({nowarn_unused_function, yeccpars2_158_/1}). -file("edoc_parser.yrl", 231). yeccpars2_158_(__Stack0) -> [___3,___2,___1 | __Stack] = __Stack0, [begin edoc_refs:type(tok_val(___1)) end | __Stack]. -compile({inline,yeccpars2_159_/1}). -dialyzer({nowarn_function, yeccpars2_159_/1}). -compile({nowarn_unused_function, yeccpars2_159_/1}). -file("edoc_parser.yrl", 217). yeccpars2_159_(__Stack0) -> [___2,___1 | __Stack] = __Stack0, [begin edoc_refs:app(tok_val(___2)) end | __Stack]. -compile({inline,yeccpars2_161_/1}). -dialyzer({nowarn_function, yeccpars2_161_/1}). -compile({nowarn_unused_function, yeccpars2_161_/1}). -file("edoc_parser.yrl", 219). yeccpars2_161_(__Stack0) -> [___4,___3,___2,___1 | __Stack] = __Stack0, [begin edoc_refs:app(tok_val(___2), ___4) end | __Stack]. -compile({inline,yeccpars2_166_/1}). -dialyzer({nowarn_function, yeccpars2_166_/1}). -compile({nowarn_unused_function, yeccpars2_166_/1}). -file("edoc_parser.yrl", 222). yeccpars2_166_(__Stack0) -> [___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin edoc_refs:function(qname(___1), tok_val(___3), tok_val(___5)) end | __Stack]. -compile({inline,yeccpars2_167_/1}). -dialyzer({nowarn_function, yeccpars2_167_/1}). -compile({nowarn_unused_function, yeccpars2_167_/1}). -file("edoc_parser.yrl", 224). yeccpars2_167_(__Stack0) -> [___5,___4,___3,___2,___1 | __Stack] = __Stack0, [begin edoc_refs:type(qname(___1), tok_val(___3)) end | __Stack]. -file("edoc_parser.yrl", 460).
Copyright ©2k19 -
Hexid
|
Tex7ure