2020-01-18 09:11:43 +02:00
|
|
|
//===- ExprCXX.cpp - (C++) Expression AST Node Implementation -------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the subclesses of Expr class declared in ExprCXX.h
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/ExprConcepts.h"
|
|
|
|
#include "clang/AST/ASTConcept.h"
|
[AST] Refactor propagation of dependency bits. NFC
Summary:
This changes introduces an enum to represent dependencies as a bitmask
and extract common patterns from code that computes dependency bits into
helper functions.
Reviewers: rsmith, martong, shafik, ilya-biryukov, hokein
Subscribers: hokein, sammccall, Mordante, riccibruno, merge_guards_bot, rnkovacs, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71920
2020-03-02 16:07:09 +01:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2020-03-17 08:33:37 +01:00
|
|
|
#include "clang/AST/ComputeDependence.h"
|
2020-01-18 09:11:43 +02:00
|
|
|
#include "clang/AST/Decl.h"
|
|
|
|
#include "clang/AST/DeclTemplate.h"
|
[AST] Refactor propagation of dependency bits. NFC
Summary:
This changes introduces an enum to represent dependencies as a bitmask
and extract common patterns from code that computes dependency bits into
helper functions.
Reviewers: rsmith, martong, shafik, ilya-biryukov, hokein
Subscribers: hokein, sammccall, Mordante, riccibruno, merge_guards_bot, rnkovacs, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71920
2020-03-02 16:07:09 +01:00
|
|
|
#include "clang/AST/DeclarationName.h"
|
2020-03-16 13:43:40 +01:00
|
|
|
#include "clang/AST/DependenceFlags.h"
|
2020-01-18 09:11:43 +02:00
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
#include "clang/AST/NestedNameSpecifier.h"
|
|
|
|
#include "clang/AST/TemplateBase.h"
|
|
|
|
#include "clang/AST/Type.h"
|
|
|
|
#include "clang/Basic/SourceLocation.h"
|
|
|
|
#include "llvm/Support/TrailingObjects.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <string>
|
[AST] Refactor propagation of dependency bits. NFC
Summary:
This changes introduces an enum to represent dependencies as a bitmask
and extract common patterns from code that computes dependency bits into
helper functions.
Reviewers: rsmith, martong, shafik, ilya-biryukov, hokein
Subscribers: hokein, sammccall, Mordante, riccibruno, merge_guards_bot, rnkovacs, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71920
2020-03-02 16:07:09 +01:00
|
|
|
#include <utility>
|
2020-01-18 09:11:43 +02:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
2020-03-17 08:33:37 +01:00
|
|
|
ConceptSpecializationExpr::ConceptSpecializationExpr(
|
2023-08-02 14:00:16 +02:00
|
|
|
const ASTContext &C, ConceptReference *Loc,
|
2022-10-24 12:20:36 -07:00
|
|
|
ImplicitConceptSpecializationDecl *SpecDecl,
|
2020-01-18 09:11:43 +02:00
|
|
|
const ConstraintSatisfaction *Satisfaction)
|
2021-06-04 23:15:23 +02:00
|
|
|
: Expr(ConceptSpecializationExprClass, C.BoolTy, VK_PRValue, OK_Ordinary),
|
2023-08-02 14:00:16 +02:00
|
|
|
ConceptRef(Loc), SpecDecl(SpecDecl),
|
2020-03-17 08:33:37 +01:00
|
|
|
Satisfaction(Satisfaction
|
|
|
|
? ASTConstraintSatisfaction::Create(C, *Satisfaction)
|
|
|
|
: nullptr) {
|
|
|
|
setDependence(computeDependence(this, /*ValueDependent=*/!Satisfaction));
|
2020-01-18 09:11:43 +02:00
|
|
|
|
|
|
|
// Currently guaranteed by the fact concepts can only be at namespace-scope.
|
2023-08-02 14:00:16 +02:00
|
|
|
assert(!Loc->getNestedNameSpecifierLoc() ||
|
|
|
|
(!Loc->getNestedNameSpecifierLoc()
|
|
|
|
.getNestedNameSpecifier()
|
|
|
|
->isInstantiationDependent() &&
|
|
|
|
!Loc->getNestedNameSpecifierLoc()
|
|
|
|
.getNestedNameSpecifier()
|
|
|
|
->containsUnexpandedParameterPack()));
|
2020-01-18 09:11:43 +02:00
|
|
|
assert((!isValueDependent() || isInstantiationDependent()) &&
|
|
|
|
"should not be value-dependent");
|
|
|
|
}
|
|
|
|
|
2022-10-24 12:20:36 -07:00
|
|
|
ConceptSpecializationExpr::ConceptSpecializationExpr(EmptyShell Empty)
|
|
|
|
: Expr(ConceptSpecializationExprClass, Empty) {}
|
2020-01-30 20:42:28 +02:00
|
|
|
|
2023-08-02 14:00:16 +02:00
|
|
|
ConceptSpecializationExpr *
|
|
|
|
ConceptSpecializationExpr::Create(const ASTContext &C, ConceptReference *Loc,
|
|
|
|
ImplicitConceptSpecializationDecl *SpecDecl,
|
|
|
|
const ConstraintSatisfaction *Satisfaction) {
|
|
|
|
return new (C) ConceptSpecializationExpr(C, Loc, SpecDecl, Satisfaction);
|
2020-01-18 09:11:43 +02:00
|
|
|
}
|
|
|
|
|
2020-01-30 20:42:28 +02:00
|
|
|
ConceptSpecializationExpr::ConceptSpecializationExpr(
|
2023-08-02 14:00:16 +02:00
|
|
|
const ASTContext &C, ConceptReference *Loc,
|
2022-10-24 12:20:36 -07:00
|
|
|
ImplicitConceptSpecializationDecl *SpecDecl,
|
2020-01-30 20:42:28 +02:00
|
|
|
const ConstraintSatisfaction *Satisfaction, bool Dependent,
|
|
|
|
bool ContainsUnexpandedParameterPack)
|
2021-06-04 23:15:23 +02:00
|
|
|
: Expr(ConceptSpecializationExprClass, C.BoolTy, VK_PRValue, OK_Ordinary),
|
2023-08-02 14:00:16 +02:00
|
|
|
ConceptRef(Loc), SpecDecl(SpecDecl),
|
2020-03-17 08:33:37 +01:00
|
|
|
Satisfaction(Satisfaction
|
|
|
|
? ASTConstraintSatisfaction::Create(C, *Satisfaction)
|
|
|
|
: nullptr) {
|
|
|
|
ExprDependence D = ExprDependence::None;
|
|
|
|
if (!Satisfaction)
|
|
|
|
D |= ExprDependence::Value;
|
|
|
|
if (Dependent)
|
|
|
|
D |= ExprDependence::Instantiation;
|
|
|
|
if (ContainsUnexpandedParameterPack)
|
|
|
|
D |= ExprDependence::UnexpandedPack;
|
|
|
|
setDependence(D);
|
2020-01-30 20:42:28 +02:00
|
|
|
}
|
|
|
|
|
2023-08-02 14:00:16 +02:00
|
|
|
ConceptSpecializationExpr *
|
|
|
|
ConceptSpecializationExpr::Create(const ASTContext &C, ConceptReference *Loc,
|
|
|
|
ImplicitConceptSpecializationDecl *SpecDecl,
|
|
|
|
const ConstraintSatisfaction *Satisfaction,
|
|
|
|
bool Dependent,
|
|
|
|
bool ContainsUnexpandedParameterPack) {
|
|
|
|
return new (C)
|
|
|
|
ConceptSpecializationExpr(C, Loc, SpecDecl, Satisfaction, Dependent,
|
|
|
|
ContainsUnexpandedParameterPack);
|
2020-01-18 09:11:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const TypeConstraint *
|
|
|
|
concepts::ExprRequirement::ReturnTypeRequirement::getTypeConstraint() const {
|
|
|
|
assert(isTypeConstraint());
|
|
|
|
auto TPL =
|
|
|
|
TypeConstraintInfo.getPointer().get<TemplateParameterList *>();
|
|
|
|
return cast<TemplateTypeParmDecl>(TPL->getParam(0))
|
|
|
|
->getTypeConstraint();
|
|
|
|
}
|
|
|
|
|
2023-03-29 08:54:40 -07:00
|
|
|
// Search through the requirements, and see if any have a RecoveryExpr in it,
|
|
|
|
// which means this RequiresExpr ALSO needs to be invalid.
|
|
|
|
static bool RequirementContainsError(concepts::Requirement *R) {
|
|
|
|
if (auto *ExprReq = dyn_cast<concepts::ExprRequirement>(R))
|
|
|
|
return ExprReq->getExpr() && ExprReq->getExpr()->containsErrors();
|
|
|
|
|
|
|
|
if (auto *NestedReq = dyn_cast<concepts::NestedRequirement>(R))
|
|
|
|
return !NestedReq->hasInvalidConstraint() &&
|
|
|
|
NestedReq->getConstraintExpr() &&
|
|
|
|
NestedReq->getConstraintExpr()->containsErrors();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-01-18 09:11:43 +02:00
|
|
|
RequiresExpr::RequiresExpr(ASTContext &C, SourceLocation RequiresKWLoc,
|
Implement mangling rules for C++20 concepts and requires-expressions.
This implements proposals from:
- https://github.com/itanium-cxx-abi/cxx-abi/issues/24: mangling for
constraints, requires-clauses, requires-expressions.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/31: requires-clauses and
template parameters in a lambda expression are mangled into the <lambda-sig>.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/47 (STEP 3): mangling for
template argument is prefixed by mangling of template parameter declaration
if it's not "obvious", for example because the template parameter is
constrained (we already implemented STEP 1 and STEP 2).
This changes the manglings for a few cases:
- Functions and function templates with constraints.
- Function templates with template parameters with deduced types:
`typename<auto N> void f();`
- Function templates with template template parameters where the argument has a
different template-head:
`template<template<typename...T>> void f(); f<std::vector>();`
In each case where a mangling changed, the change fixes a mangling collision.
Note that only function templates are affected, not class templates or variable
templates, and only new constructs (template parameters with deduced types,
constrained templates) and esoteric constructs (templates with template
template parameters with non-matching template template arguments, most of
which Clang still does not accept by default due to
`-frelaxed-template-template-args` not being enabled by default), so the risk
to ABI stability from this change is relatively low. Nonetheless,
`-fclang-abi-compat=17` can be used to restore the old manglings for cases
which we could successfully but incorrectly mangle before.
Fixes #48216, #49884, #61273
Reviewed By: erichkeane, #libc_abi
Differential Revision: https://reviews.llvm.org/D147655
2023-09-12 18:53:54 -07:00
|
|
|
RequiresExprBodyDecl *Body, SourceLocation LParenLoc,
|
2020-01-18 09:11:43 +02:00
|
|
|
ArrayRef<ParmVarDecl *> LocalParameters,
|
Implement mangling rules for C++20 concepts and requires-expressions.
This implements proposals from:
- https://github.com/itanium-cxx-abi/cxx-abi/issues/24: mangling for
constraints, requires-clauses, requires-expressions.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/31: requires-clauses and
template parameters in a lambda expression are mangled into the <lambda-sig>.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/47 (STEP 3): mangling for
template argument is prefixed by mangling of template parameter declaration
if it's not "obvious", for example because the template parameter is
constrained (we already implemented STEP 1 and STEP 2).
This changes the manglings for a few cases:
- Functions and function templates with constraints.
- Function templates with template parameters with deduced types:
`typename<auto N> void f();`
- Function templates with template template parameters where the argument has a
different template-head:
`template<template<typename...T>> void f(); f<std::vector>();`
In each case where a mangling changed, the change fixes a mangling collision.
Note that only function templates are affected, not class templates or variable
templates, and only new constructs (template parameters with deduced types,
constrained templates) and esoteric constructs (templates with template
template parameters with non-matching template template arguments, most of
which Clang still does not accept by default due to
`-frelaxed-template-template-args` not being enabled by default), so the risk
to ABI stability from this change is relatively low. Nonetheless,
`-fclang-abi-compat=17` can be used to restore the old manglings for cases
which we could successfully but incorrectly mangle before.
Fixes #48216, #49884, #61273
Reviewed By: erichkeane, #libc_abi
Differential Revision: https://reviews.llvm.org/D147655
2023-09-12 18:53:54 -07:00
|
|
|
SourceLocation RParenLoc,
|
2020-01-18 09:11:43 +02:00
|
|
|
ArrayRef<concepts::Requirement *> Requirements,
|
|
|
|
SourceLocation RBraceLoc)
|
2021-06-04 23:15:23 +02:00
|
|
|
: Expr(RequiresExprClass, C.BoolTy, VK_PRValue, OK_Ordinary),
|
2020-03-17 08:33:37 +01:00
|
|
|
NumLocalParameters(LocalParameters.size()),
|
Implement mangling rules for C++20 concepts and requires-expressions.
This implements proposals from:
- https://github.com/itanium-cxx-abi/cxx-abi/issues/24: mangling for
constraints, requires-clauses, requires-expressions.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/31: requires-clauses and
template parameters in a lambda expression are mangled into the <lambda-sig>.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/47 (STEP 3): mangling for
template argument is prefixed by mangling of template parameter declaration
if it's not "obvious", for example because the template parameter is
constrained (we already implemented STEP 1 and STEP 2).
This changes the manglings for a few cases:
- Functions and function templates with constraints.
- Function templates with template parameters with deduced types:
`typename<auto N> void f();`
- Function templates with template template parameters where the argument has a
different template-head:
`template<template<typename...T>> void f(); f<std::vector>();`
In each case where a mangling changed, the change fixes a mangling collision.
Note that only function templates are affected, not class templates or variable
templates, and only new constructs (template parameters with deduced types,
constrained templates) and esoteric constructs (templates with template
template parameters with non-matching template template arguments, most of
which Clang still does not accept by default due to
`-frelaxed-template-template-args` not being enabled by default), so the risk
to ABI stability from this change is relatively low. Nonetheless,
`-fclang-abi-compat=17` can be used to restore the old manglings for cases
which we could successfully but incorrectly mangle before.
Fixes #48216, #49884, #61273
Reviewed By: erichkeane, #libc_abi
Differential Revision: https://reviews.llvm.org/D147655
2023-09-12 18:53:54 -07:00
|
|
|
NumRequirements(Requirements.size()), Body(Body), LParenLoc(LParenLoc),
|
|
|
|
RParenLoc(RParenLoc), RBraceLoc(RBraceLoc) {
|
2020-01-18 09:11:43 +02:00
|
|
|
RequiresExprBits.IsSatisfied = false;
|
|
|
|
RequiresExprBits.RequiresKWLoc = RequiresKWLoc;
|
|
|
|
bool Dependent = false;
|
|
|
|
bool ContainsUnexpandedParameterPack = false;
|
|
|
|
for (ParmVarDecl *P : LocalParameters) {
|
|
|
|
Dependent |= P->getType()->isInstantiationDependentType();
|
|
|
|
ContainsUnexpandedParameterPack |=
|
|
|
|
P->getType()->containsUnexpandedParameterPack();
|
|
|
|
}
|
|
|
|
RequiresExprBits.IsSatisfied = true;
|
|
|
|
for (concepts::Requirement *R : Requirements) {
|
|
|
|
Dependent |= R->isDependent();
|
|
|
|
ContainsUnexpandedParameterPack |= R->containsUnexpandedParameterPack();
|
|
|
|
if (!Dependent) {
|
|
|
|
RequiresExprBits.IsSatisfied = R->isSatisfied();
|
|
|
|
if (!RequiresExprBits.IsSatisfied)
|
|
|
|
break;
|
|
|
|
}
|
2023-03-29 08:54:40 -07:00
|
|
|
|
|
|
|
if (RequirementContainsError(R))
|
|
|
|
setDependence(getDependence() | ExprDependence::Error);
|
2020-01-18 09:11:43 +02:00
|
|
|
}
|
|
|
|
std::copy(LocalParameters.begin(), LocalParameters.end(),
|
|
|
|
getTrailingObjects<ParmVarDecl *>());
|
|
|
|
std::copy(Requirements.begin(), Requirements.end(),
|
|
|
|
getTrailingObjects<concepts::Requirement *>());
|
|
|
|
RequiresExprBits.IsSatisfied |= Dependent;
|
2020-03-17 08:33:37 +01:00
|
|
|
// FIXME: move the computing dependency logic to ComputeDependence.h
|
[AST] Refactor propagation of dependency bits. NFC
Summary:
This changes introduces an enum to represent dependencies as a bitmask
and extract common patterns from code that computes dependency bits into
helper functions.
Reviewers: rsmith, martong, shafik, ilya-biryukov, hokein
Subscribers: hokein, sammccall, Mordante, riccibruno, merge_guards_bot, rnkovacs, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71920
2020-03-02 16:07:09 +01:00
|
|
|
if (ContainsUnexpandedParameterPack)
|
2020-03-18 23:38:08 +01:00
|
|
|
setDependence(getDependence() | ExprDependence::UnexpandedPack);
|
[AST] Refactor propagation of dependency bits. NFC
Summary:
This changes introduces an enum to represent dependencies as a bitmask
and extract common patterns from code that computes dependency bits into
helper functions.
Reviewers: rsmith, martong, shafik, ilya-biryukov, hokein
Subscribers: hokein, sammccall, Mordante, riccibruno, merge_guards_bot, rnkovacs, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71920
2020-03-02 16:07:09 +01:00
|
|
|
// FIXME: this is incorrect for cases where we have a non-dependent
|
|
|
|
// requirement, but its parameters are instantiation-dependent. RequiresExpr
|
|
|
|
// should be instantiation-dependent if it has instantiation-dependent
|
|
|
|
// parameters.
|
|
|
|
if (Dependent)
|
2020-03-18 23:38:08 +01:00
|
|
|
setDependence(getDependence() | ExprDependence::ValueInstantiation);
|
2020-01-18 09:11:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
RequiresExpr::RequiresExpr(ASTContext &C, EmptyShell Empty,
|
|
|
|
unsigned NumLocalParameters,
|
|
|
|
unsigned NumRequirements)
|
|
|
|
: Expr(RequiresExprClass, Empty), NumLocalParameters(NumLocalParameters),
|
|
|
|
NumRequirements(NumRequirements) { }
|
|
|
|
|
Implement mangling rules for C++20 concepts and requires-expressions.
This implements proposals from:
- https://github.com/itanium-cxx-abi/cxx-abi/issues/24: mangling for
constraints, requires-clauses, requires-expressions.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/31: requires-clauses and
template parameters in a lambda expression are mangled into the <lambda-sig>.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/47 (STEP 3): mangling for
template argument is prefixed by mangling of template parameter declaration
if it's not "obvious", for example because the template parameter is
constrained (we already implemented STEP 1 and STEP 2).
This changes the manglings for a few cases:
- Functions and function templates with constraints.
- Function templates with template parameters with deduced types:
`typename<auto N> void f();`
- Function templates with template template parameters where the argument has a
different template-head:
`template<template<typename...T>> void f(); f<std::vector>();`
In each case where a mangling changed, the change fixes a mangling collision.
Note that only function templates are affected, not class templates or variable
templates, and only new constructs (template parameters with deduced types,
constrained templates) and esoteric constructs (templates with template
template parameters with non-matching template template arguments, most of
which Clang still does not accept by default due to
`-frelaxed-template-template-args` not being enabled by default), so the risk
to ABI stability from this change is relatively low. Nonetheless,
`-fclang-abi-compat=17` can be used to restore the old manglings for cases
which we could successfully but incorrectly mangle before.
Fixes #48216, #49884, #61273
Reviewed By: erichkeane, #libc_abi
Differential Revision: https://reviews.llvm.org/D147655
2023-09-12 18:53:54 -07:00
|
|
|
RequiresExpr *RequiresExpr::Create(
|
|
|
|
ASTContext &C, SourceLocation RequiresKWLoc, RequiresExprBodyDecl *Body,
|
|
|
|
SourceLocation LParenLoc, ArrayRef<ParmVarDecl *> LocalParameters,
|
|
|
|
SourceLocation RParenLoc, ArrayRef<concepts::Requirement *> Requirements,
|
|
|
|
SourceLocation RBraceLoc) {
|
2020-01-18 09:11:43 +02:00
|
|
|
void *Mem =
|
|
|
|
C.Allocate(totalSizeToAlloc<ParmVarDecl *, concepts::Requirement *>(
|
|
|
|
LocalParameters.size(), Requirements.size()),
|
|
|
|
alignof(RequiresExpr));
|
Implement mangling rules for C++20 concepts and requires-expressions.
This implements proposals from:
- https://github.com/itanium-cxx-abi/cxx-abi/issues/24: mangling for
constraints, requires-clauses, requires-expressions.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/31: requires-clauses and
template parameters in a lambda expression are mangled into the <lambda-sig>.
- https://github.com/itanium-cxx-abi/cxx-abi/issues/47 (STEP 3): mangling for
template argument is prefixed by mangling of template parameter declaration
if it's not "obvious", for example because the template parameter is
constrained (we already implemented STEP 1 and STEP 2).
This changes the manglings for a few cases:
- Functions and function templates with constraints.
- Function templates with template parameters with deduced types:
`typename<auto N> void f();`
- Function templates with template template parameters where the argument has a
different template-head:
`template<template<typename...T>> void f(); f<std::vector>();`
In each case where a mangling changed, the change fixes a mangling collision.
Note that only function templates are affected, not class templates or variable
templates, and only new constructs (template parameters with deduced types,
constrained templates) and esoteric constructs (templates with template
template parameters with non-matching template template arguments, most of
which Clang still does not accept by default due to
`-frelaxed-template-template-args` not being enabled by default), so the risk
to ABI stability from this change is relatively low. Nonetheless,
`-fclang-abi-compat=17` can be used to restore the old manglings for cases
which we could successfully but incorrectly mangle before.
Fixes #48216, #49884, #61273
Reviewed By: erichkeane, #libc_abi
Differential Revision: https://reviews.llvm.org/D147655
2023-09-12 18:53:54 -07:00
|
|
|
return new (Mem)
|
|
|
|
RequiresExpr(C, RequiresKWLoc, Body, LParenLoc, LocalParameters,
|
|
|
|
RParenLoc, Requirements, RBraceLoc);
|
2020-01-18 09:11:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
RequiresExpr *
|
|
|
|
RequiresExpr::Create(ASTContext &C, EmptyShell Empty,
|
|
|
|
unsigned NumLocalParameters, unsigned NumRequirements) {
|
|
|
|
void *Mem =
|
|
|
|
C.Allocate(totalSizeToAlloc<ParmVarDecl *, concepts::Requirement *>(
|
|
|
|
NumLocalParameters, NumRequirements),
|
|
|
|
alignof(RequiresExpr));
|
|
|
|
return new (Mem) RequiresExpr(C, Empty, NumLocalParameters, NumRequirements);
|
|
|
|
}
|