| // Copyright (c) 2020, 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; |
| /** The configurations for a desugar test */ |
| public enum DesugarTestConfiguration { |
| // Javac generated code with no desugaring (reference run). |
| // Javac generated code with desugaring to class file. |
| // Javac generated code with desugaring to DEX. |
| // Javac generated code with desugaring to class file and then compiled to DEX without desugaring. |
| public static boolean isJavac(DesugarTestConfiguration c) { |
| public static boolean isNotJavac(DesugarTestConfiguration c) { |
| public static boolean isNotDesugared(DesugarTestConfiguration c) { |
| public static boolean isDesugared(DesugarTestConfiguration c) { |