1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| define("ace/snippets/io",["require","exports","module"], function(require, exports, module) {
| "use strict";
|
| exports.snippets = [
| {
| "content": "assertEquals(${1:expected}, ${2:expr})",
| "name": "assertEquals",
| "scope": "io",
| "tabTrigger": "ae"
| },
| {
| "content": "${1:${2:newValue} := ${3:Object} }clone do(\n\t$0\n)",
| "name": "clone do",
| "scope": "io",
| "tabTrigger": "cdo"
| },
| {
| "content": "docSlot(\"${1:slotName}\", \"${2:documentation}\")",
| "name": "docSlot",
| "scope": "io",
| "tabTrigger": "ds"
| },
| {
| "content": "(${1:header,}\n\t${2:body}\n)$0",
| "keyEquivalent": "@(",
| "name": "Indented Bracketed Line",
| "scope": "io",
| "tabTrigger": "("
| },
| {
| "content": "\n\t$0\n",
| "keyEquivalent": "\r",
| "name": "Special: Return Inside Empty Parenthesis",
| "scope": "io meta.empty-parenthesis.io, io meta.comma-parenthesis.io"
| },
| {
| "content": "${1:methodName} := method(${2:args,}\n\t$0\n)",
| "name": "method",
| "scope": "io",
| "tabTrigger": "m"
| },
| {
| "content": "newSlot(\"${1:slotName}\", ${2:defaultValue}, \"${3:docString}\")$0",
| "name": "newSlot",
| "scope": "io",
| "tabTrigger": "ns"
| },
| {
| "content": "${1:name} := Object clone do(\n\t$0\n)",
| "name": "Object clone do",
| "scope": "io",
| "tabTrigger": "ocdo"
| },
| {
| "content": "test${1:SomeFeature} := method(\n\t$0\n)",
| "name": "testMethod",
| "scope": "io",
| "tabTrigger": "ts"
| },
| {
| "content": "${1:Something}Test := ${2:UnitTest} clone do(\n\t$0\n)",
| "name": "UnitTest",
| "scope": "io",
| "tabTrigger": "ut"
| }
| ];
| exports.scope = "io";
|
| });
| (function() {
| window.require(["ace/snippets/io"], function(m) {
| if (typeof module == "object" && typeof exports == "object" && module) {
| module.exports = m;
| }
| });
| })();
|
|
|