-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Otimização de desempenho da análise semântica
- Loading branch information
Showing
79 changed files
with
618 additions
and
1,011 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
import { AtribuicaoCompostaDivisaoContext } from "@portugol-webstudio/antlr"; | ||
|
||
import { AtribuiçãoCmd } from "./AtribuiçãoCmd.js"; | ||
import { Node } from "./Node.js"; | ||
|
||
export class AtribuiçãoCompostaDivisãoCmd extends AtribuiçãoCmd { | ||
constructor( | ||
public ctx: AtribuicaoCompostaDivisaoContext, | ||
public children: Node[], | ||
) { | ||
super(ctx, children); | ||
} | ||
} | ||
export class AtribuiçãoCompostaDivisãoCmd extends AtribuiçãoCmd<AtribuicaoCompostaDivisaoContext> {} |
10 changes: 1 addition & 9 deletions
10
packages/parser/src/nodes/AtribuiçãoCompostaMultiplicaçãoCmd.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
import { AtribuicaoCompostaMultiplicacaoContext } from "@portugol-webstudio/antlr"; | ||
|
||
import { AtribuiçãoCmd } from "./AtribuiçãoCmd.js"; | ||
import { Node } from "./Node.js"; | ||
|
||
export class AtribuiçãoCompostaMultiplicaçãoCmd extends AtribuiçãoCmd { | ||
constructor( | ||
public ctx: AtribuicaoCompostaMultiplicacaoContext, | ||
public children: Node[], | ||
) { | ||
super(ctx, children); | ||
} | ||
} | ||
export class AtribuiçãoCompostaMultiplicaçãoCmd extends AtribuiçãoCmd<AtribuicaoCompostaMultiplicacaoContext> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
import { AtribuicaoCompostaSomaContext } from "@portugol-webstudio/antlr"; | ||
|
||
import { AtribuiçãoCmd } from "./AtribuiçãoCmd.js"; | ||
import { Node } from "./Node.js"; | ||
|
||
export class AtribuiçãoCompostaSomaCmd extends AtribuiçãoCmd { | ||
constructor( | ||
public ctx: AtribuicaoCompostaSomaContext, | ||
public children: Node[], | ||
) { | ||
super(ctx, children); | ||
} | ||
} | ||
export class AtribuiçãoCompostaSomaCmd extends AtribuiçãoCmd<AtribuicaoCompostaSomaContext> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
import { AtribuicaoCompostaSubtracaoContext } from "@portugol-webstudio/antlr"; | ||
|
||
import { AtribuiçãoCmd } from "./AtribuiçãoCmd.js"; | ||
import { Node } from "./Node.js"; | ||
|
||
export class AtribuiçãoCompostaSubtraçãoCmd extends AtribuiçãoCmd { | ||
constructor( | ||
public ctx: AtribuicaoCompostaSubtracaoContext, | ||
public children: Node[], | ||
) { | ||
super(ctx, children); | ||
} | ||
} | ||
export class AtribuiçãoCompostaSubtraçãoCmd extends AtribuiçãoCmd<AtribuicaoCompostaSubtracaoContext> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,3 @@ | ||
import { ParserRuleContext } from "antlr4ng"; | ||
|
||
import { Node } from "./Node.js"; | ||
|
||
export class Bypass extends Node { | ||
constructor( | ||
public ctx: ParserRuleContext, | ||
public children: Node[] = [], | ||
) { | ||
super(); | ||
} | ||
} | ||
export class Bypass extends Node {} |
Oops, something went wrong.