mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
cc65ec32c5
Upgrade ace to 1.4.12 GitOrigin-RevId: a381b3815248e710cf8f02558e8c9f74b063fc96
33 lines
No EOL
757 B
JavaScript
33 lines
No EOL
757 B
JavaScript
ace.define("ace/snippets/drools",[], function(require, exports, module) {
|
|
"use strict";
|
|
|
|
exports.snippetText = "\n\
|
|
snippet rule\n\
|
|
rule \"${1?:rule_name}\"\n\
|
|
when\n\
|
|
${2:// when...} \n\
|
|
then\n\
|
|
${3:// then...}\n\
|
|
end\n\
|
|
\n\
|
|
snippet query\n\
|
|
query ${1?:query_name}\n\
|
|
${2:// find} \n\
|
|
end\n\
|
|
\n\
|
|
snippet declare\n\
|
|
declare ${1?:type_name}\n\
|
|
${2:// attributes} \n\
|
|
end\n\
|
|
\n\
|
|
";
|
|
exports.scope = "drools";
|
|
|
|
}); (function() {
|
|
ace.require(["ace/snippets/drools"], function(m) {
|
|
if (typeof module == "object" && typeof exports == "object" && module) {
|
|
module.exports = m;
|
|
}
|
|
});
|
|
})();
|
|
|