@artel/artc 0.6.25231 → 0.6.25233

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import { Analyzer } from '../analysis/index.js';
2
2
  import { Name } from '../common/index.js';
3
- import { ConstructorEntity, DereferenceOperatorEntity, DestructorEntity, EntityHidingLevel, IndexerEntity, OperatorEntity, OperatorKind, ParameterVariableEntity, MethodEntity, TypeParameterEntity, FieldEntity } from '../entities/index.js';
3
+ import { ConstructorEntity, DereferenceOperatorEntity, DestructorEntity, EntityHidingLevel, FieldEntity, IndexerEntity, MethodEntity, OperatorEntity, OperatorKind, ParameterVariableEntity, TypeParameterEntity } from '../entities/index.js';
4
4
  import { FunctionType } from './FunctionType.js';
5
5
  import { Substitutions } from './Substitutions.js';
6
6
  import { Type } from './Type.js';
@@ -77,16 +77,15 @@ export declare class Operator implements ITypeMember {
77
77
  export declare class Constructor implements ITypeMember {
78
78
  private readonly _entity;
79
79
  private readonly _substitutions;
80
- private readonly _instanceType;
81
80
  readonly kind = "constructor";
82
81
  private readonly _valueParameters;
83
- constructor(_entity: ConstructorEntity, _substitutions: Substitutions, _instanceType: Type);
82
+ constructor(_entity: ConstructorEntity, _substitutions: Substitutions);
84
83
  getValueParameters(): readonly ValueParameter[];
85
- getInstanceType(): Type;
86
84
  getEntity(): ConstructorEntity;
87
85
  getSubstitutions(): Substitutions;
88
86
  isHidden(): EntityHidingLevel | undefined;
89
87
  isStatic(): boolean;
88
+ applySubstitutions(substitutions: Substitutions): TypeMember;
90
89
  equals(other: TypeMember): boolean;
91
90
  }
92
91
  export declare class Destructor implements ITypeMember {
@@ -136,4 +135,5 @@ export interface ITypeMember {
136
135
  isStatic(): boolean;
137
136
  getSubstitutions(): Substitutions;
138
137
  equals(other: TypeMember): boolean;
138
+ applySubstitutions(substitutions: Substitutions): TypeMember;
139
139
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artel/artc",
3
- "version": "0.6.25231",
3
+ "version": "0.6.25233",
4
4
  "description": "Артель Компилятор | Artel Compiler",
5
5
  "author": "Nezaboodka Team <contact@nezaboodka.com>",
6
6
  "license": "LGPL-3.0-or-later",