smithy-model/src/jmh/java/software/amazon/smithy/model/jmh/Selectors.java [63:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        private Selector createSuboptimalHttpBindingIncompatibilitySelector() {
            return Selector.parse("$service(service) ${service}\n"
                                  + "$operations(~> operation)\n"
                                  + ":test(${operations}[trait|http])\n"
                                  + "${operations}\n"
                                  + ":not([trait|http])");
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



smithy-model/src/jmh/java/software/amazon/smithy/model/jmh/Selectors.java [71:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        private Selector createHttpBindingIncompatibilitySelector() {
            return Selector.parse("service\n"
                                  + "$operations(~> operation)\n"
                                  + ":test(${operations}[trait|http])\n"
                                  + "${operations}\n"
                                  + ":not([trait|http])");
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



