1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
|
/*
This file is part of KDevelop
Copyright 2013 Olivier de Gaalon <olivier.jg@gmail.com>
Copyright 2013 Milian Wolff <mail@milianw.de>
Copyright 2013 Kevin Funk <kfunk@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "parsesession.h"
#include <QStandardPaths>
#include "clangdiagnosticevaluator.h"
#include "todoextractor.h"
#include "clanghelpers.h"
#include "clangindex.h"
#include "clangparsingenvironment.h"
#include "util/clangdebug.h"
#include "util/clangtypes.h"
#include "util/clangutils.h"
#include "headerguardassistant.h"
#include <language/duchain/duchainlock.h>
#include <language/duchain/duchain.h>
#include <language/codegen/coderepresentation.h>
#include <KShell>
#include <QDir>
#include <QFileInfo>
#include <QMimeDatabase>
#include <QMimeType>
#include <algorithm>
using namespace KDevelop;
namespace {
QVector<QByteArray> extraArgs()
{
const auto extraArgsString = QString::fromLatin1(qgetenv("KDEV_CLANG_EXTRA_ARGUMENTS"));
const auto extraArgs = KShell::splitArgs(extraArgsString);
// transform to list of QByteArrays
QVector<QByteArray> result;
result.reserve(extraArgs.size());
for (const QString& arg : extraArgs) {
result << arg.toLatin1();
}
clangDebug() << "Passing extra arguments to clang:" << result;
return result;
}
void sanitizeArguments(QVector<QByteArray>& arguments)
{
// We remove the -Werror flag, and replace -Werror=foo by -Wfoo.
// Warning as error may cause problem to the clang parser.
const auto asError = QByteArrayLiteral("-Werror=");
const auto documentation = QByteArrayLiteral("-Wdocumentation");
for (auto& argument : arguments) {
if (argument == "-Werror") {
argument.clear();
} else if (argument.startsWith(asError)) {
// replace -Werror=foo by -Wfoo
argument.remove(2, asError.length() - 2);
}
#if CINDEX_VERSION_MINOR < 100 // FIXME https://bugs.llvm.org/show_bug.cgi?id=35333
if (argument == documentation) {
argument.clear();
}
#endif
}
}
QVector<QByteArray> argsForSession(const QString& path, ParseSessionData::Options options, const ParserSettings& parserSettings)
{
QMimeDatabase db;
if (db.mimeTypeForFile(path).name() == QLatin1String("text/x-objcsrc")) {
return {QByteArrayLiteral("-xobjective-c++")};
}
// TODO: No proper mime type detection possible yet
// cf. https://bugs.freedesktop.org/show_bug.cgi?id=26913
if (path.endsWith(QLatin1String(".cl"), Qt::CaseInsensitive)) {
return {QByteArrayLiteral("-xcl")};
}
// TODO: No proper mime type detection possible yet
// cf. https://bugs.freedesktop.org/show_bug.cgi?id=23700
if (path.endsWith(QLatin1String(".cu"), Qt::CaseInsensitive) ||
path.endsWith(QLatin1String(".cuh"), Qt::CaseInsensitive)) {
auto result = parserSettings.toClangAPI();
result.append(QByteArrayLiteral("-xcuda"));
return result;
}
if (parserSettings.parserOptions.isEmpty()) {
// The parserOptions can be empty for some unit tests that use ParseSession directly
auto defaultArguments = ClangSettingsManager::self()->parserSettings(path).toClangAPI();
defaultArguments.append(QByteArrayLiteral("-nostdinc"));
defaultArguments.append(QByteArrayLiteral("-nostdinc++"));
defaultArguments.append(QByteArrayLiteral("-xc++"));
sanitizeArguments(defaultArguments);
return defaultArguments;
}
auto result = parserSettings.toClangAPI();
result.append(QByteArrayLiteral("-nostdinc"));
if (parserSettings.isCpp()) {
result.append(QByteArrayLiteral("-nostdinc++"));
}
if (options & ParseSessionData::PrecompiledHeader) {
result.append(parserSettings.isCpp() ? QByteArrayLiteral("-xc++-header") : QByteArrayLiteral("-xc-header"));
sanitizeArguments(result);
return result;
}
result.append(parserSettings.isCpp() ? QByteArrayLiteral("-xc++") : QByteArrayLiteral("-xc"));
sanitizeArguments(result);
return result;
}
void addIncludes(QVector<const char*>* args, QVector<QByteArray>* otherArgs,
const Path::List& includes, const char* cliSwitch)
{
for (const Path& url : includes) {
if (url.isEmpty()) {
continue;
}
QFileInfo info(url.toLocalFile());
QByteArray path = url.toLocalFile().toUtf8();
if (info.isFile()) {
path.prepend("-include");
} else {
path.prepend(cliSwitch);
}
otherArgs->append(path);
args->append(path.constData());
}
}
void addFrameworkDirectories(QVector<const char*>* args, QVector<QByteArray>* otherArgs,
const Path::List& frameworkDirectories, const char* cliSwitch)
{
for (const Path& url : frameworkDirectories) {
if (url.isEmpty()) {
continue;
}
QFileInfo info(url.toLocalFile());
if (!info.isDir()) {
qCWarning(KDEV_CLANG) << "supposed framework directory is not a directory:" << url.pathOrUrl();
continue;
}
QByteArray path = url.toLocalFile().toUtf8();
otherArgs->append(cliSwitch);
otherArgs->append(path);
args->append(cliSwitch);
args->append(path.constData());
}
}
QVector<CXUnsavedFile> toClangApi(const QVector<UnsavedFile>& unsavedFiles)
{
QVector<CXUnsavedFile> unsaved;
unsaved.reserve(unsavedFiles.size());
std::transform(unsavedFiles.begin(), unsavedFiles.end(),
std::back_inserter(unsaved),
[] (const UnsavedFile& file) { return file.toClangApi(); });
return unsaved;
}
bool hasQtIncludes(const Path::List& includePaths)
{
return std::find_if(includePaths.begin(), includePaths.end(), [] (const Path& path) {
return path.lastPathSegment() == QLatin1String("QtCore");
}) != includePaths.end();
}
}
ParseSessionData::ParseSessionData(const QVector<UnsavedFile>& unsavedFiles, ClangIndex* index,
const ClangParsingEnvironment& environment, Options options)
: m_file(nullptr)
, m_unit(nullptr)
{
unsigned int flags = CXTranslationUnit_DetailedPreprocessingRecord
#if CINDEX_VERSION_MINOR >= 34
| CXTranslationUnit_KeepGoing
#endif
;
if (options.testFlag(SkipFunctionBodies)) {
flags |= CXTranslationUnit_SkipFunctionBodies;
}
if (options.testFlag(PrecompiledHeader)) {
flags |= CXTranslationUnit_ForSerialization;
} else if (environment.quality() == ClangParsingEnvironment::Unknown) {
flags |= CXTranslationUnit_Incomplete;
}
if (options.testFlag(OpenedInEditor)) {
flags |= CXTranslationUnit_CacheCompletionResults
#if CINDEX_VERSION_MINOR >= 32
| CXTranslationUnit_CreatePreambleOnFirstParse
#endif
| CXTranslationUnit_PrecompiledPreamble;
}
const auto tuUrl = environment.translationUnitUrl();
Q_ASSERT(!tuUrl.isEmpty());
const auto arguments = argsForSession(tuUrl.str(), options, environment.parserSettings());
QVector<const char*> clangArguments;
const auto& includes = environment.includes();
const auto& pchInclude = environment.pchInclude();
// uses QByteArray as smart-pointer for const char* ownership
QVector<QByteArray> smartArgs;
smartArgs.reserve(includes.system.size() + includes.project.size()
+ pchInclude.isValid() + arguments.size() + 1);
clangArguments.reserve(smartArgs.size());
std::transform(arguments.constBegin(), arguments.constEnd(),
std::back_inserter(clangArguments),
[] (const QByteArray &argument) { return argument.constData(); });
// NOTE: the PCH include must come before all other includes!
if (pchInclude.isValid()) {
clangArguments << "-include";
QByteArray pchFile = pchInclude.toLocalFile().toUtf8();
smartArgs << pchFile;
clangArguments << pchFile.constData();
}
if (hasQtIncludes(includes.system)) {
const auto wrappedQtHeaders = QStandardPaths::locate(QStandardPaths::GenericDataLocation,
QStringLiteral("kdevclangsupport/wrappedQtHeaders"),
QStandardPaths::LocateDirectory).toUtf8();
if (!wrappedQtHeaders.isEmpty()) {
smartArgs << wrappedQtHeaders;
clangArguments << "-isystem" << wrappedQtHeaders.constData();
const QByteArray qtCore = wrappedQtHeaders + "/QtCore";
smartArgs << qtCore;
clangArguments << "-isystem" << qtCore.constData();
}
}
addIncludes(&clangArguments, &smartArgs, includes.system, "-isystem");
addIncludes(&clangArguments, &smartArgs, includes.project, "-I");
const auto& frameworkDirectories = environment.frameworkDirectories();
addFrameworkDirectories(&clangArguments, &smartArgs, frameworkDirectories.system, "-iframework");
addFrameworkDirectories(&clangArguments, &smartArgs, frameworkDirectories.project, "-F");
// libclang cannot find it's builtin dir automatically, we have to specify it manually
smartArgs << ClangHelpers::clangBuiltinIncludePath().toUtf8();
clangArguments << "-isystem" << smartArgs.last().constData();
if (!environment.defines().isEmpty()) {
smartArgs << writeDefinesFile(environment.defines());
clangArguments << "-imacros" << smartArgs.last().constData();
}
if (!environment.workingDirectory().isEmpty()) {
QByteArray workingDirectory = environment.workingDirectory().toLocalFile().toUtf8();
workingDirectory.prepend("-working-directory");
smartArgs << workingDirectory;
clangArguments << workingDirectory.constData();
}
// append extra args from environment variable
static const auto extraArgs = ::extraArgs();
for (const QByteArray& arg : extraArgs) {
clangArguments << arg.constData();
}
QVector<CXUnsavedFile> unsaved;
//For PrecompiledHeader, we don't want unsaved contents (and contents.isEmpty())
if (!options.testFlag(PrecompiledHeader)) {
unsaved = toClangApi(unsavedFiles);
}
// debugging: print hypothetical clang invocation including args (for easy c&p for local testing)
if (qEnvironmentVariableIsSet("KDEV_CLANG_DISPLAY_ARGS")) {
QTextStream out(stdout);
out << "Invocation: clang";
for (const auto& arg : qAsConst(clangArguments)) {
out << " " << arg;
}
out << " " << tuUrl.byteArray().constData() << "\n";
}
const CXErrorCode code = clang_parseTranslationUnit2(
index->index(), tuUrl.byteArray().constData(),
clangArguments.constData(), clangArguments.size(),
unsaved.data(), unsaved.size(),
flags,
&m_unit
);
if (code != CXError_Success) {
qCWarning(KDEV_CLANG) << "clang_parseTranslationUnit2 return with error code" << code;
if (!qEnvironmentVariableIsSet("KDEV_CLANG_DISPLAY_DIAGS")) {
qCWarning(KDEV_CLANG) << " (start KDevelop with `KDEV_CLANG_DISPLAY_DIAGS=1 kdevelop` to see more diagnostics)";
}
}
if (m_unit) {
setUnit(m_unit);
m_environment = environment;
if (options.testFlag(PrecompiledHeader)) {
clang_saveTranslationUnit(m_unit, QByteArray(tuUrl.byteArray() + ".pch").constData(), CXSaveTranslationUnit_None);
}
} else {
qCWarning(KDEV_CLANG) << "Failed to parse translation unit:" << tuUrl;
}
}
ParseSessionData::~ParseSessionData()
{
clang_disposeTranslationUnit(m_unit);
}
QByteArray ParseSessionData::writeDefinesFile(const QMap<QString, QString>& defines)
{
m_definesFile.open();
Q_ASSERT(m_definesFile.isWritable());
{
QTextStream definesStream(&m_definesFile);
// don't show warnings about redefined macros
definesStream << "#pragma clang system_header\n";
for (auto it = defines.begin(); it != defines.end(); ++it) {
if (it.key().startsWith(QLatin1String("__has_include("))
|| it.key().startsWith(QLatin1String("__has_include_next(")))
{
continue;
}
definesStream << QLatin1String("#define ") << it.key() << ' ' << it.value() << '\n';
}
}
m_definesFile.close();
if (qEnvironmentVariableIsSet("KDEV_CLANG_DISPLAY_DEFINES")) {
QFile f(m_definesFile.fileName());
f.open(QIODevice::ReadOnly);
Q_ASSERT(f.isReadable());
QTextStream out(stdout);
out << "Defines file: " << f.fileName() << "\n"
<< f.readAll() << f.size()
<< "\n VS defines:" << defines.size() << "\n";
}
return m_definesFile.fileName().toUtf8();
}
void ParseSessionData::setUnit(CXTranslationUnit unit)
{
m_unit = unit;
m_diagnosticsCache.clear();
if (m_unit) {
const ClangString unitFile(clang_getTranslationUnitSpelling(unit));
m_file = clang_getFile(m_unit, unitFile.c_str());
} else {
m_file = nullptr;
}
}
ClangParsingEnvironment ParseSessionData::environment() const
{
return m_environment;
}
ParseSession::ParseSession(const ParseSessionData::Ptr& data)
: d(data)
{
if (d) {
ENSURE_CHAIN_NOT_LOCKED
d->m_mutex.lock();
}
}
ParseSession::~ParseSession()
{
if (d) {
d->m_mutex.unlock();
}
}
void ParseSession::setData(const ParseSessionData::Ptr& data)
{
if (data == d) {
return;
}
if (d) {
d->m_mutex.unlock();
}
d = data;
if (d) {
ENSURE_CHAIN_NOT_LOCKED
d->m_mutex.lock();
}
}
ParseSessionData::Ptr ParseSession::data() const
{
return d;
}
IndexedString ParseSession::languageString()
{
static const IndexedString lang("Clang");
return lang;
}
ClangProblem::Ptr ParseSession::getOrCreateProblem(int indexInTU, CXDiagnostic diagnostic) const
{
if (!d) {
return {};
}
auto& problem = d->m_diagnosticsCache[indexInTU];
if (!problem) {
problem = ClangDiagnosticEvaluator::createProblem(diagnostic, d->m_unit);
}
return problem;
}
ClangProblem::Ptr ParseSession::createExternalProblem(int indexInTU,
CXDiagnostic diagnostic,
const KLocalizedString& descriptionTemplate,
int childProblemFinalLocationIndex) const
{
// Make a copy of the original (cached) problem since it is modified later
auto problem = ClangProblem::Ptr(new ClangProblem(*getOrCreateProblem(indexInTU, diagnostic)));
// Insert a copy of the parent problem (without child problems) as the first
// child problem to preserve its location.
auto* problemCopy = new ClangProblem();
problemCopy->setSource(problem->source());
problemCopy->setFinalLocation(problem->finalLocation());
problemCopy->setFinalLocationMode(problem->finalLocationMode());
problemCopy->setDescription(problem->description());
problemCopy->setExplanation(problem->explanation());
problemCopy->setSeverity(problem->severity());
auto childProblems = problem->diagnostics();
childProblems.prepend(IProblem::Ptr(problemCopy));
problem->setDiagnostics(childProblems);
// Override the problem's finalLocation with that of the child problem in this document.
// This is required to make the problem show up in the problem reporter for this
// file, since it filters by finalLocation. It will also lead the user to the correct
// location when clicking the problem and cause proper error highlighting.
int index = (childProblemFinalLocationIndex >= 0) ?
(1 + childProblemFinalLocationIndex) :
(childProblems.size() - 1);
problem->setFinalLocation(childProblems[index]->finalLocation());
problem->setDescription(descriptionTemplate.subs(problem->description()).toString());
return problem;
}
QList<ClangProblem::Ptr> ParseSession::createRequestedHereProblems(int indexInTU, CXDiagnostic diagnostic, CXFile file) const
{
QList<ClangProblem::Ptr> results;
auto childDiagnostics = clang_getChildDiagnostics(diagnostic);
auto numChildDiagnostics = clang_getNumDiagnosticsInSet(childDiagnostics);
for (uint j = 0; j < numChildDiagnostics; ++j) {
auto childDiagnostic = clang_getDiagnosticInSet(childDiagnostics, j);
CXSourceLocation childLocation = clang_getDiagnosticLocation(childDiagnostic);
CXFile childDiagnosticFile;
clang_getFileLocation(childLocation, &childDiagnosticFile, nullptr, nullptr, nullptr);
if (childDiagnosticFile == file) {
QString description = ClangString(clang_getDiagnosticSpelling(childDiagnostic)).toString();
if (description.endsWith(QLatin1String("requested here"))) {
// Note: Using the index j here assumes a 1:1 mapping from clang child diagnostics to KDevelop
// problem diagnostics (i.e., child problems). If we wanted to avoid making this assumption, we'd have
// to use ClangDiagnosticEvaluator::createProblem() first and then search within its
// child problems to find the correct index.
results << createExternalProblem(indexInTU, diagnostic, ki18n("Requested here: %1"), j);
}
}
}
return results;
}
QList<ProblemPointer> ParseSession::problemsForFile(CXFile file) const
{
if (!d) {
return {};
}
QList<ProblemPointer> problems;
// extra clang diagnostics
const uint numDiagnostics = clang_getNumDiagnostics(d->m_unit);
problems.reserve(numDiagnostics);
d->m_diagnosticsCache.resize(numDiagnostics);
for (uint i = 0; i < numDiagnostics; ++i) {
auto diagnostic = clang_getDiagnostic(d->m_unit, i);
CXSourceLocation location = clang_getDiagnosticLocation(diagnostic);
CXFile diagnosticFile;
clang_getFileLocation(location, &diagnosticFile, nullptr, nullptr, nullptr);
const auto requestedHereProblems = createRequestedHereProblems(i, diagnostic, file);
for (const auto& ptr : requestedHereProblems) {
problems.append(static_cast<const ProblemPointer&>(ptr));
}
// missing-include problems are so severe in clang that we always propagate
// them to this document, to ensure that the user will see the error.
if (diagnosticFile != file && ClangDiagnosticEvaluator::diagnosticType(diagnostic) != ClangDiagnosticEvaluator::IncludeFileNotFoundProblem) {
continue;
}
problems << ((diagnosticFile == file) ?
getOrCreateProblem(i, diagnostic) :
createExternalProblem(i, diagnostic, ki18n("In included file: %1")));
clang_disposeDiagnostic(diagnostic);
}
// other problem sources
TodoExtractor extractor(unit(), file);
problems << extractor.problems();
#if CINDEX_VERSION_MINOR > 30
// note that the below warning is triggered on every reparse when there is a precompiled preamble
// see also TestDUChain::testReparseIncludeGuard
const QString path = QDir(ClangString(clang_getFileName(file)).toString()).canonicalPath();
const IndexedString indexedPath(path);
const auto location = clang_getLocationForOffset(d->m_unit, file, 0);
if (ClangHelpers::isHeader(path) && !clang_isFileMultipleIncludeGuarded(unit(), file)
&& !clang_Location_isInSystemHeader(location)
// clang_isFileMultipleIncludeGuarded always returns 0 in case our only file is the header
&& !clang_Location_isFromMainFile(location))
{
QExplicitlySharedDataPointer<StaticAssistantProblem> problem(new StaticAssistantProblem);
problem->setSeverity(IProblem::Warning);
problem->setDescription(i18n("Header is not guarded against multiple inclusions"));
problem->setExplanation(i18n("The given header is not guarded against multiple inclusions, "
"either with the conventional #ifndef/#define/#endif macro guards or with #pragma once."));
const KTextEditor::Range problemRange(0, 0, KDevelop::createCodeRepresentation(indexedPath)->lines(), 0);
problem->setFinalLocation(DocumentRange{indexedPath, problemRange});
problem->setSource(IProblem::Preprocessor);
problem->setSolutionAssistant(KDevelop::IAssistant::Ptr(new HeaderGuardAssistant(d->m_unit, file)));
problems << problem;
}
#endif
return problems;
}
CXTranslationUnit ParseSession::unit() const
{
return d ? d->m_unit : nullptr;
}
CXFile ParseSession::file(const QByteArray& path) const
{
return clang_getFile(unit(), path.constData());
}
CXFile ParseSession::mainFile() const
{
return d ? d->m_file : nullptr;
}
bool ParseSession::reparse(const QVector<UnsavedFile>& unsavedFiles, const ClangParsingEnvironment& environment)
{
if (!d || environment != d->m_environment) {
return false;
}
auto unsaved = toClangApi(unsavedFiles);
const auto code = clang_reparseTranslationUnit(d->m_unit, unsaved.size(), unsaved.data(),
clang_defaultReparseOptions(d->m_unit));
if (code != CXError_Success) {
qCWarning(KDEV_CLANG) << "clang_reparseTranslationUnit return with error code" << code;
// if error code != 0 => clang_reparseTranslationUnit invalidates the old translation unit => clean up
clang_disposeTranslationUnit(d->m_unit);
d->setUnit(nullptr);
return false;
}
// update state
d->setUnit(d->m_unit);
return true;
}
ClangParsingEnvironment ParseSession::environment() const
{
if (!d) {
return {};
}
return d->m_environment;
}
|