| // Copyright (c) 2026, the Dart 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. |
| |
| // #docregion single |
| void single() { |
| // #enddocregion single |
| print('Not showing up!'); |
| // #docregion single |
| } |
| |
| // #enddocregion single |
| |
| // #docregion multiple |
| void multiple() { |
| // #enddocregion multiple |
| print('Not showing up!'); |
| // #docregion multiple |
| print('Showing up!'); |
| // #enddocregion multiple |
| print('Not showing up!'); |
| // #docregion multiple |
| } |
| |
| // #enddocregion multiple |
| |
| // #docregion remove |
| void remove() { |
| // #enddocregion remove |
| print('Nothing here.'); |
| // #docregion remove |
| } |
| |
| // #enddocregion remove |
| |
| // #docregion custom |
| void custom() { |
| // #enddocregion custom |
| print('Different plaster here.'); |
| // #docregion custom |
| } |
| |
| // #enddocregion custom |
| |
| // #docregion template |
| void template() { |
| // #enddocregion template |
| print('Templated plaster here.'); |
| // #docregion template |
| } |
| // #enddocregion template |