Search in sources :

Example 16 with TStructMember

use of org.eclipse.n4js.ts.types.TStructMember in project n4js by eclipse.

the class VersionedParameterizedTypeRefStructuralImpl method getTypeRefAsString.

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public String getTypeRefAsString() {
    TypingStrategy _typingStrategy = this.getTypingStrategy();
    Type _declaredType = this.getDeclaredType();
    String _rawTypeAsString = null;
    if (_declaredType != null) {
        _rawTypeAsString = _declaredType.getRawTypeAsString();
    }
    String _plus = (_typingStrategy + _rawTypeAsString);
    String _xifexpression = null;
    boolean _isEmpty = this.getTypeArgs().isEmpty();
    if (_isEmpty) {
        _xifexpression = "";
    } else {
        final Function1<TypeArgument, String> _function = new Function1<TypeArgument, String>() {

            public String apply(final TypeArgument it) {
                return it.getTypeRefAsString();
            }
        };
        String _join = IterableExtensions.join(XcoreEListExtensions.<TypeArgument, String>map(this.getTypeArgs(), _function), ",");
        String _plus_1 = ("<" + _join);
        _xifexpression = (_plus_1 + ">");
    }
    String _plus_2 = (_plus + _xifexpression);
    String _xifexpression_1 = null;
    boolean _isEmpty_1 = this.getStructuralMembers().isEmpty();
    if (_isEmpty_1) {
        _xifexpression_1 = "";
    } else {
        final Function1<TStructMember, String> _function_1 = new Function1<TStructMember, String>() {

            public String apply(final TStructMember it) {
                return it.getMemberAsString();
            }
        };
        String _join_1 = IterableExtensions.join(XcoreEListExtensions.<TStructMember, String>map(this.getStructuralMembers(), _function_1), "; ");
        String _plus_3 = (" with { " + _join_1);
        String _plus_4 = (_plus_3 + " }");
        String _xifexpression_2 = null;
        boolean _isEmpty_2 = this.getPostponedSubstitutions().isEmpty();
        if (_isEmpty_2) {
            _xifexpression_2 = "";
        } else {
            final Function1<TypeVariableMapping, String> _function_2 = new Function1<TypeVariableMapping, String>() {

                public String apply(final TypeVariableMapping it) {
                    String _typeAsString = it.getTypeVar().getTypeAsString();
                    String _plus = (_typeAsString + "->");
                    String _typeRefAsString = it.getTypeArg().getTypeRefAsString();
                    return (_plus + _typeRefAsString);
                }
            };
            String _join_2 = IterableExtensions.join(XcoreEListExtensions.<TypeVariableMapping, String>map(this.getPostponedSubstitutions(), _function_2), ", ");
            String _plus_5 = (" [[" + _join_2);
            _xifexpression_2 = (_plus_5 + "]]");
        }
        _xifexpression_1 = (_plus_4 + _xifexpression_2);
    }
    return (_plus_2 + _xifexpression_1);
}
Also used : TypingStrategy(org.eclipse.n4js.ts.types.TypingStrategy) Type(org.eclipse.n4js.ts.types.Type) TStructuralType(org.eclipse.n4js.ts.types.TStructuralType) TStructMember(org.eclipse.n4js.ts.types.TStructMember) TypeVariableMapping(org.eclipse.n4js.ts.typeRefs.TypeVariableMapping) Function1(org.eclipse.xtext.xbase.lib.Functions.Function1) TypeArgument(org.eclipse.n4js.ts.typeRefs.TypeArgument)

Example 17 with TStructMember

use of org.eclipse.n4js.ts.types.TStructMember in project n4js by eclipse.

the class TStructGetterImpl method setDefinedMember.

/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public void setDefinedMember(TStructMember newDefinedMember) {
    TStructMember oldDefinedMember = definedMember;
    definedMember = newDefinedMember;
    if (eNotificationRequired())
        eNotify(new ENotificationImpl(this, Notification.SET, TypesPackage.TSTRUCT_GETTER__DEFINED_MEMBER, oldDefinedMember, definedMember));
}
Also used : TStructMember(org.eclipse.n4js.ts.types.TStructMember) ENotificationImpl(org.eclipse.emf.ecore.impl.ENotificationImpl)

Example 18 with TStructMember

use of org.eclipse.n4js.ts.types.TStructMember in project n4js by eclipse.

the class InferredElementsTargetURICollector method doAdd.

@Override
protected void doAdd(EObject primaryTarget, TargetURIs targetURIsAddHere) {
    Resource resource = primaryTarget.eResource();
    // If the target is not contained in a resource, we cannot do anything but return.
    if (resource == null)
        return;
    EcoreUtil.resolveAll(primaryTarget.eResource());
    // Special handling for composed members and TStructMember
    if (primaryTarget instanceof TMember && ((TMember) primaryTarget).isComposed()) {
        // In case of composed member, add the constituent members instead.
        List<TMember> constituentMembers = ((TMember) primaryTarget).getConstituentMembers();
        for (TMember constituentMember : constituentMembers) {
            super.doAdd(constituentMember, targetURIsAddHere);
        }
    } else {
        if (primaryTarget instanceof TStructMember) {
            TStructMember crossRefStructMember = ((TStructMember) primaryTarget).getDefinedMember();
            if (crossRefStructMember != null)
                // If this TStructMember is an AST, also add the defined member located in the TModule
                super.doAdd(((TStructMember) primaryTarget).getDefinedMember(), targetURIsAddHere);
        }
        super.doAdd(primaryTarget, targetURIsAddHere);
    }
    inferredElements.collectInferredElements(primaryTarget, (object) -> {
        if (object != null) {
            super.doAdd(object, targetURIsAddHere);
        }
    }, staticPolyfillHelper);
}
Also used : TStructMember(org.eclipse.n4js.ts.types.TStructMember) Resource(org.eclipse.emf.ecore.resource.Resource) TMember(org.eclipse.n4js.ts.types.TMember)

Aggregations

TStructMember (org.eclipse.n4js.ts.types.TStructMember)18 TStructuralType (org.eclipse.n4js.ts.types.TStructuralType)11 ENotificationImpl (org.eclipse.emf.ecore.impl.ENotificationImpl)5 TypeArgument (org.eclipse.n4js.ts.typeRefs.TypeArgument)4 TypeVariableMapping (org.eclipse.n4js.ts.typeRefs.TypeVariableMapping)4 Type (org.eclipse.n4js.ts.types.Type)4 TypingStrategy (org.eclipse.n4js.ts.types.TypingStrategy)4 Function1 (org.eclipse.xtext.xbase.lib.Functions.Function1)4 Resource (org.eclipse.emf.ecore.resource.Resource)1 BoundThisTypeRef (org.eclipse.n4js.ts.typeRefs.BoundThisTypeRef)1 ComposedTypeRef (org.eclipse.n4js.ts.typeRefs.ComposedTypeRef)1 ExistentialTypeRef (org.eclipse.n4js.ts.typeRefs.ExistentialTypeRef)1 FunctionTypeExprOrRef (org.eclipse.n4js.ts.typeRefs.FunctionTypeExprOrRef)1 ParameterizedTypeRef (org.eclipse.n4js.ts.typeRefs.ParameterizedTypeRef)1 StructuralTypeRef (org.eclipse.n4js.ts.typeRefs.StructuralTypeRef)1 TypeRef (org.eclipse.n4js.ts.typeRefs.TypeRef)1 TypeTypeRef (org.eclipse.n4js.ts.typeRefs.TypeTypeRef)1 Wildcard (org.eclipse.n4js.ts.typeRefs.Wildcard)1 TMember (org.eclipse.n4js.ts.types.TMember)1