blob: 501482e554375faa4f17d7703d0cd5c10f45a3d8 [file] [log] [blame]
// Copyright (c) 2022, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.ir.desugar.desugaredlibrary.machinespecification;
public class MachineDesugaredLibrarySpecification {
private final boolean libraryCompilation;
private final MachineTopLevelFlags topLevelFlags;
private final MachineRewritingFlags rewritingFlags;
public MachineDesugaredLibrarySpecification(
boolean libraryCompilation,
MachineTopLevelFlags topLevelFlags,
MachineRewritingFlags rewritingFlags) {
this.libraryCompilation = libraryCompilation;
this.topLevelFlags = topLevelFlags;
this.rewritingFlags = rewritingFlags;
}
public boolean isLibraryCompilation() {
return libraryCompilation;
}
public MachineTopLevelFlags getTopLevelFlags() {
return topLevelFlags;
}
public MachineRewritingFlags getRewritingFlags() {
return rewritingFlags;
}
}