mirror of https://github.com/Wilfred/difftastic/
36 lines
902 B
Plaintext
36 lines
902 B
Plaintext
trigger myAccountTrigger on Account (
|
|
// <- keyword
|
|
// ^ type
|
|
// ^ keyword
|
|
// ^ type
|
|
// ^ punctuation
|
|
before insert,
|
|
// ^^^^^^^^^^^^^ keyword
|
|
// ^ punctuation
|
|
before update,
|
|
// ^^^^^^^^^^^^^ keyword
|
|
// ^ punctuation
|
|
before delete,
|
|
// ^^^^^^^^^^^^^ keyword
|
|
// ^ punctuation
|
|
after insert,
|
|
// ^^^^^^^^^^^^ keyword
|
|
// ^ punctuation
|
|
after update,
|
|
// ^^^^^^^^^^^^ keyword
|
|
// ^ punctuation
|
|
after delete,
|
|
// ^^^^^^^^^^^^ keyword
|
|
// ^ punctuation
|
|
after undelete) {
|
|
// ^^^^^^^^^^^^^^ keyword
|
|
// ^ punctuation
|
|
// ^ punctuation
|
|
Integer i = 1;
|
|
// ^ type
|
|
// ^ variable
|
|
// ^ operator
|
|
// ^ number
|
|
// ^ punctuation
|
|
}
|
|
// <- punctuation |