Skip to content

Commit

Permalink
deploy: ee46bb0
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Mar 18, 2024
1 parent 94b1fe2 commit b68f328
Show file tree
Hide file tree
Showing 631 changed files with 77,666 additions and 44,255 deletions.
11 changes: 8 additions & 3 deletions docs/end-users/Configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ <h1><a name="Configuration" class="anchor" href="#Configuration">Configuration</
commandline.<br />
Your IDE should respect your settings, however the implementation of that is editor specific. Setting the configuration via
UI might be available depending on the IDE.</p>
<table class="pre"><tr><td><pre><code>version: 6.3.0+e2d6de066b56c67aeef0c6cf92b28ff4a30f46d2</code></pre></td></tr></table>
<table class="pre"><tr><td><pre><code>version: 6.3.0+ee46bb05aa888ca49a46f17ff26a07e218f6b67c</code></pre></td></tr></table>
<h2><a name="Usage" class="anchor" href="#Usage">Usage</a></h2>
<p>Inside .editorconfig you can specify the file extension and code location to be use per config:</p>
<pre class="fssnip highlighted"><code lang="fsharp"><span class="pn">[</span><span class="pn">*.</span><span class="id">fs</span><span class="pn">]</span>
Expand Down Expand Up @@ -1374,7 +1374,9 @@ <h3><a name="fsharp_experimental_elmish" class="anchor" href="#fsharp_experiment
| CharacterWidth
| NumberOfItems
static member OfConfigString: cfgString: string -&gt; MultilineFormatterType option
static member ToConfigString: cfg: MultilineFormatterType -&gt; string</div>
static member ToConfigString: cfg: MultilineFormatterType -&gt; string
member IsCharacterWidth: bool
member IsNumberOfItems: bool</div>
<div class="fsdocs-tip" id="fs38">union case MultilineFormatterType.NumberOfItems: MultilineFormatterType</div>
<div class="fsdocs-tip" id="fs39">static member MultilineFormatterType.ToConfigString: cfg: MultilineFormatterType -&gt; string</div>
<div class="fsdocs-tip" id="fs40">FormatConfig.RecordMultilineFormatter: MultilineFormatterType</div>
Expand All @@ -1389,7 +1391,10 @@ <h3><a name="fsharp_experimental_elmish" class="anchor" href="#fsharp_experiment
| Aligned
| Stroustrup
static member OfConfigString: cfgString: string -&gt; MultilineBracketStyle option
static member ToConfigString: cfg: MultilineBracketStyle -&gt; string</div>
static member ToConfigString: cfg: MultilineBracketStyle -&gt; string
member IsAligned: bool
member IsCramped: bool
member IsStroustrup: bool</div>
<div class="fsdocs-tip" id="fs48">static member MultilineBracketStyle.ToConfigString: cfg: MultilineBracketStyle -&gt; string</div>
<div class="fsdocs-tip" id="fs49">FormatConfig.MultilineBracketStyle: MultilineBracketStyle</div>
<div class="fsdocs-tip" id="fs50">union case MultilineBracketStyle.Aligned: MultilineBracketStyle</div>
Expand Down
43 changes: 39 additions & 4 deletions docs/end-users/GeneratingCode.html
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,9 @@ <h3><a name="Updates" class="anchor" href="#Updates">Updates</a></h3>
| Ident of SingleTextNode
| KnownDot of SingleTextNode
| UnknownDot
member IsIdent: bool
member IsKnownDot: bool
member IsUnknownDot: bool
member Range: range option</div>
<div class="fsdocs-tip" id="fs18">union case IdentifierOrDot.Ident: SingleTextNode -&gt; IdentifierOrDot</div>
<div class="fsdocs-tip" id="fs19">type Expr =
Expand All @@ -547,13 +550,25 @@ <h3><a name="Updates" class="anchor" href="#Updates">Updates</a></h3>
| ArrayOrList of ExprArrayOrListNode
...
static member Node: x: Expr -&gt; Node
member HasParentheses: bool</div>
member HasParentheses: bool
member IsAnonStructRecord: bool
member IsApp: bool
member IsAppLongIdentAndSingleParenArg: bool
member IsAppSingleParenArg: bool
member IsAppWithLambda: bool
member IsArrayOrList: bool
member IsBeginEnd: bool
member IsChain: bool
...</div>
<div class="fsdocs-tip" id="fs20">union case Expr.Constant: Constant -&gt; Expr</div>
<div class="fsdocs-tip" id="fs21">type Constant =
| FromText of SingleTextNode
| Unit of UnitNode
| Measure of ConstantMeasureNode
static member Node: c: Constant -&gt; NodeBase</div>
static member Node: c: Constant -&gt; NodeBase
member IsFromText: bool
member IsMeasure: bool
member IsUnit: bool</div>
<div class="fsdocs-tip" id="fs22">union case Constant.FromText: SingleTextNode -&gt; Constant</div>
<div class="fsdocs-tip" id="fs23">type ModuleDecl =
| OpenList of OpenListNode
Expand All @@ -567,7 +582,17 @@ <h3><a name="Updates" class="anchor" href="#Updates">Updates</a></h3>
| NestedModule of NestedModuleNode
| TypeDefn of TypeDefn
...
static member Node: x: ModuleDecl -&gt; Node<br /><em>&lt;summary&gt;
static member Node: x: ModuleDecl -&gt; Node
member IsAttributes: bool
member IsDeclExpr: bool
member IsException: bool
member IsExternBinding: bool
member IsHashDirectiveList: bool
member IsModuleAbbrev: bool
member IsNestedModule: bool
member IsOpenList: bool
member IsTopLevelBinding: bool
...<br /><em>&lt;summary&gt;
Each case in this DU should have a container node
&lt;/summary&gt;</em></div>
<div class="fsdocs-tip" id="fs24">union case ModuleDecl.TopLevelBinding: BindingNode -&gt; ModuleDecl</div>
Expand Down Expand Up @@ -659,7 +684,17 @@ <h3><a name="Updates" class="anchor" href="#Updates">Updates</a></h3>
| As of PatLeftMiddleRight
| ListCons of PatLeftMiddleRight
...
static member Node: x: Pattern -&gt; Node</div>
static member Node: x: Pattern -&gt; Node
member IsAnds: bool
member IsArrayOrList: bool
member IsAs: bool
member IsConst: bool
member IsIsInst: bool
member IsListCons: bool
member IsLongIdent: bool
member IsNamePatPairs: bool
member IsNamed: bool
...</div>
<div class="fsdocs-tip" id="fs50">union case Pattern.Named: PatNamedNode -&gt; Pattern</div>
<div class="fsdocs-tip" id="fs51">Multiple items<br />type PatNamedNode =
inherit NodeBase
Expand Down
2 changes: 1 addition & 1 deletion index.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,103 @@ <h3>
<div></div>
<div></div>
<div></div>
<div></div>
<div>
<h3>
Instance members
</h3>
<table class="table outer-list fsdocs-member-list">
<thead>
<tr>
<td class="fsdocs-member-list-header">
Instance member
</td>
<td class="fsdocs-member-list-header">
Description
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="fsdocs-member-usage">
<div>
<code onmouseout="hideTip(event, '3163', 3163)" onmouseover="showTip(event, '3163', 3163)">
<p>
<a id="IsExitCodeNonZero">
<a href="#IsExitCodeNonZero">
<code><span>this.IsExitCodeNonZero</span></code>
</a>
</a>
</p>
</code>
<div class="fsdocs-tip" id="3163">
<div class="member-tooltip">
Full Usage:
<code><span>this.IsExitCodeNonZero</span></code>
<br/>
<br/>
<span>
Returns:
<code>bool</code>
</span>
<br/>
</div>
</div>
</div>
</td>
<td class="fsdocs-member-xmldoc">
<dl class="fsdocs-returns">
<dt>
<span class="fsdocs-return-name">
Returns:
</span>
<code>bool</code>
</dt>
<dd class="fsdocs-return-docs"></dd>
</dl>
</td>
</tr>
<tr>
<td class="fsdocs-member-usage">
<div>
<code onmouseout="hideTip(event, '3164', 3164)" onmouseover="showTip(event, '3164', 3164)">
<p>
<a id="IsProcessStartError">
<a href="#IsProcessStartError">
<code><span>this.IsProcessStartError</span></code>
</a>
</a>
</p>
</code>
<div class="fsdocs-tip" id="3164">
<div class="member-tooltip">
Full Usage:
<code><span>this.IsProcessStartError</span></code>
<br/>
<br/>
<span>
Returns:
<code>bool</code>
</span>
<br/>
</div>
</div>
</div>
</td>
<td class="fsdocs-member-xmldoc">
<dl class="fsdocs-returns">
<dt>
<span class="fsdocs-return-name">
Returns:
</span>
<code>bool</code>
</dt>
<dd class="fsdocs-return-docs"></dd>
</dl>
</td>
</tr>
</tbody>
</table>
</div>
<div></div>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ <h3>
<tr>
<td class="fsdocs-member-usage">
<div>
<code onmouseout="hideTip(event, '3163', 3163)" onmouseover="showTip(event, '3163', 3163)">
<code onmouseout="hideTip(event, '3165', 3165)" onmouseover="showTip(event, '3165', 3165)">
<p>
<a id="FantomasExecutableFile">
<a href="#FantomasExecutableFile">
Expand All @@ -348,7 +348,7 @@ <h3>
</a>
</p>
</code>
<div class="fsdocs-tip" id="3163">
<div class="fsdocs-tip" id="3165">
<div class="member-tooltip">
Full Usage:
<code><span>FantomasExecutableFile&#32;string</span></code>
Expand Down Expand Up @@ -389,7 +389,64 @@ <h3>
<div></div>
<div></div>
<div></div>
<div></div>
<div>
<h3>
Instance members
</h3>
<table class="table outer-list fsdocs-member-list">
<thead>
<tr>
<td class="fsdocs-member-list-header">
Instance member
</td>
<td class="fsdocs-member-list-header">
Description
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="fsdocs-member-usage">
<div>
<code onmouseout="hideTip(event, '3166', 3166)" onmouseover="showTip(event, '3166', 3166)">
<p>
<a id="IsFantomasExecutableFile">
<a href="#IsFantomasExecutableFile">
<code><span>this.IsFantomasExecutableFile</span></code>
</a>
</a>
</p>
</code>
<div class="fsdocs-tip" id="3166">
<div class="member-tooltip">
Full Usage:
<code><span>this.IsFantomasExecutableFile</span></code>
<br/>
<br/>
<span>
Returns:
<code>bool</code>
</span>
<br/>
</div>
</div>
</div>
</td>
<td class="fsdocs-member-xmldoc">
<dl class="fsdocs-returns">
<dt>
<span class="fsdocs-return-name">
Returns:
</span>
<code>bool</code>
</dt>
<dd class="fsdocs-return-docs"></dd>
</dl>
</td>
</tr>
</tbody>
</table>
</div>
<div></div>
</div>

Expand Down
Loading

0 comments on commit b68f328

Please sign in to comment.