rename XFactory.Regs to XFactory.Generators.
This commit is contained in:
+12
-12
@@ -182,25 +182,25 @@ LBL 0 is reserved for end of subprogram.</p>
|
||||
|
||||
|
||||
<h2 id="Hi_NcParsers_ParsingSyntaxs_Heidenhain_HeidenhainLblSyntax_examples">Examples</h2>
|
||||
<p>Input: LBL 1
|
||||
Output:</p>
|
||||
<p>#BeforeBuild.UnparsedText: <code>LBL 1</code>
|
||||
#AfterBuild:</p>
|
||||
<pre><code class="lang-csharp">{
|
||||
"LBL": {
|
||||
"Name": "1"
|
||||
"Parsing": {
|
||||
"LBL": { "Name": "1" }
|
||||
}
|
||||
}</code></pre>
|
||||
<p>Input: LBL MyLabel
|
||||
Output:</p>
|
||||
<p>#BeforeBuild.UnparsedText: <code>LBL MyLabel</code>
|
||||
#AfterBuild:</p>
|
||||
<pre><code class="lang-csharp">{
|
||||
"LBL": {
|
||||
"Name": "MyLabel"
|
||||
"Parsing": {
|
||||
"LBL": { "Name": "MyLabel" }
|
||||
}
|
||||
}</code></pre>
|
||||
<p>Input: LBL 0
|
||||
Output:</p>
|
||||
<p>#BeforeBuild.UnparsedText: <code>LBL 0</code> (LBL 0 is the end-of-subprogram sentinel)
|
||||
#AfterBuild:</p>
|
||||
<pre><code class="lang-csharp">{
|
||||
"LBL": {
|
||||
"Name": "0"
|
||||
"Parsing": {
|
||||
"LBL": { "Name": "0" }
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user