mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
27 lines
468 B
JavaScript
27 lines
468 B
JavaScript
// Regular AI comment
|
|
//ai do something
|
|
//AI make this better
|
|
//ai! urgent change needed
|
|
//AI! another urgent one
|
|
// ai with space
|
|
// AI with caps
|
|
// ai! with bang
|
|
// this is not an ai comment
|
|
// aider is not an ai comment
|
|
|
|
function dummyFunction() {
|
|
// ai inside function
|
|
return true;
|
|
}
|
|
|
|
class Example {
|
|
constructor() {
|
|
// ai in constructor
|
|
this.value = 42;
|
|
}
|
|
|
|
method() {
|
|
// ai in method
|
|
return this.value;
|
|
}
|
|
}
|