-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Iniciada a adição de suporte à arrays dinâmicos, estes também serão…
… contados por referência assim como as strings. - Iniciado a adição de suporte à classes, interfaces, enumerações e uniões. Instâncias de classes ou interfaces também serão contadas por referências assim como as strings e arrays dinâmicos. - Strings e arrays dinâmicos (ambos contados por referência) serão todos classificados como objetos, da mesma forma que as instâncias de classes/interfaces. - Modificado a forma como as informações de depuração sobre variáveis locais são armazenadas para se basearem em escopos baseados em faixas de ip ao invés de intervalos de linhas. - Alterada a palavra chave "externa" para "esterna". - Adicionado diversas outras palavras chaves sem função pre-definida ainda, mas que futuramente serão associadas a novas funções.
- Loading branch information
Showing
27 changed files
with
576 additions
and
311 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using Comp.Types; | ||
|
||
namespace Comp; | ||
|
||
public interface IMember | ||
{ | ||
public FieldAggregationType DeclaringType | ||
{ | ||
get; | ||
} | ||
} |
Oops, something went wrong.