mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
f9886e1e28
There is no need to keep the support for Dart here. PR Close #49857
8 lines
317 B
JavaScript
8 lines
317 B
JavaScript
// This comment type is used in C like languages such as JS, TS, etc
|
|
module.exports = {
|
|
regionStartMatcher: /^\s*\/\/\s*#docregion\s*(.*)\s*$/,
|
|
regionEndMatcher: /^\s*\/\/\s*#enddocregion\s*(.*)\s*$/,
|
|
plasterMatcher: /^\s*\/\/\s*#docplaster\s*(.*)\s*$/,
|
|
createPlasterComment: plaster => `/* ${plaster} */`
|
|
};
|