<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal">I have been chasing a compile error:<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">** (CompileError) elixir_compiler_1: function '__MODULE__'/1+17:<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">  An implementation limit was reached.<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">  Try reducing the complexity of this function.<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-left:.5in">  Instruction: {move,{x,0},{y,1555}}<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-left:.5in">    (stdlib) lists.erl:1338: :lists.foreach/2<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">    lib/absinthe/phase/schema/compile.ex:51: Absinthe.Phase.Schema.Compile.run/2<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">    lib/absinthe/pipeline.ex:283: Absinthe.Pipeline.run_phase/3<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">    lib/absinthe/schema.ex:214: Absinthe.Schema.__after_compile__/2<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">    (stdlib) lists.erl:1263: :lists.foldl/3<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">    (stdlib) erl_eval.erl:680: :erl_eval.do_apply/6<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in">    (elixir) lib/kernel/parallel_compiler.ex:206: anonymous fn/4 in Kernel.ParallelCompiler.spawn_workers/6<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I realize this is an Elixir / Absinthe issue, but my question is this:  How is lists:foreach() able to trigger this? 
<o:p></o:p></p>
<p class="MsoNormal"><a href="https://github.com/erlang/otp/blob/master/lib/stdlib/src/lists.erl#L1332">https://github.com/erlang/otp/blob/master/lib/stdlib/src/lists.erl#L1332</a><o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Poking around, there is indeed a list of 776 items that generates 2 function defs each, which gives us a final AST list of approx 1552.  I assume this is related to the {y,1555} in Error.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Can lists:each() not handle lists longer than 1024?  What am I missing?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks!<o:p></o:p></p>
<p class="MsoNormal">Mike<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tbody>
<tr>
<td valign="bottom" style="padding:.75pt .75pt .75pt .75pt"></td>
</tr>
</tbody>
</table>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
</body>
</html>