blob: 096598320f42a36a8ff654d0032665b429fbf69a [file] [log] [blame]
/**
* @checkReturnValue The input string is unchanged.
*/
export function userDefinedCheckReturnValueFunction(str: string) {
return `input ${str}`;
}
/**
* @tag1
* @checkReturnValue The input string is unchanged.
* @tag2
*/
export function manyJsDocTags(str: string) {
return `input ${str}`;
}
export class ClassContainingUserDefinedCheckReturnValueFunction {
/**
* @checkReturnValue The input string is unchanged.
*/
checkReturnValue(str: string) {
return `input ${str}`;
}
/** @checkReturnValue */ sameLineJsDoc(str: string) {
return `input ${str}`;
}
noJsDoc(str: string) {
return `input ${str}`;
}
}