1 /** 2 Copyright: Copyright (c) 2018, Joakim Brännström. All rights reserved. 3 License: MPL-2 4 Author: Joakim Brännström (joakim.brannstrom@gmx.com) 5 6 This Source Code Form is subject to the terms of the Mozilla Public License, 7 v.2.0. If a copy of the MPL was not distributed with this file, You can obtain 8 one at http://mozilla.org/MPL/2.0/. 9 */ 10 module dextool.plugin.mutate.backend.mutation_type.sdl; 11 12 import dextool.plugin.mutate.backend.type; 13 import dextool.clang_extensions : OpKind; 14 15 Mutation.Kind[] stmtDelMutations() @safe pure nothrow { 16 return stmtDelMutationsRaw.dup; 17 } 18 19 immutable Mutation.Kind[] stmtDelMutationsRaw; 20 21 shared static this() { 22 with (Mutation.Kind) { 23 stmtDelMutationsRaw = [stmtDel]; 24 } 25 }