| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581 | 
							- define("amber_core/Helios-Announcements", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_core/Kernel-Objects"], function(smalltalk,nil,_st){
 
- smalltalk.addPackage('Helios-Announcements');
 
- smalltalk.packages["Helios-Announcements"].transport = {"type":"amd","amdNamespace":"amber_core"};
 
- smalltalk.addClass('HLAboutToChange', smalltalk.Object, ['actionBlock'], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "actionBlock",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@actionBlock"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"actionBlock",{},smalltalk.HLAboutToChange)})},
 
- args: [],
 
- source: "actionBlock\x0a\x09^ actionBlock",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLAboutToChange);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "actionBlock:",
 
- protocol: 'accessing',
 
- fn: function (aBlock){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@actionBlock"]=aBlock;
 
- return self}, function($ctx1) {$ctx1.fill(self,"actionBlock:",{aBlock:aBlock},smalltalk.HLAboutToChange)})},
 
- args: ["aBlock"],
 
- source: "actionBlock: aBlock\x0a\x09actionBlock := aBlock",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLAboutToChange);
 
- smalltalk.addClass('HLAnnouncement', smalltalk.Object, [], 'Helios-Announcements');
 
- smalltalk.HLAnnouncement.comment="I am the root of the announcement class hierarchy used in the Helios UI.";
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "heliosClass",
 
- protocol: 'helios',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- return "announcement";
 
- }, function($ctx1) {$ctx1.fill(self,"heliosClass",{},smalltalk.HLAnnouncement.klass)})},
 
- args: [],
 
- source: "heliosClass\x0a\x09^ 'announcement'",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLAnnouncement.klass);
 
- smalltalk.addClass('HLCodeHandled', smalltalk.HLAnnouncement, ['code'], 'Helios-Announcements');
 
- smalltalk.HLCodeHandled.comment="I am the root class of announcements emitted by `HLCodeWidget`s";
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "code",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@code"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"code",{},smalltalk.HLCodeHandled)})},
 
- args: [],
 
- source: "code\x0a\x0a\x09^ code",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLCodeHandled);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "code:",
 
- protocol: 'accessing',
 
- fn: function (aModel){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@code"]=aModel;
 
- return self}, function($ctx1) {$ctx1.fill(self,"code:",{aModel:aModel},smalltalk.HLCodeHandled)})},
 
- args: ["aModel"],
 
- source: "code: aModel\x0a\x0a\x09code := aModel",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLCodeHandled);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "on:",
 
- protocol: 'actions',
 
- fn: function (aCodeModel){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$3,$1;
 
- $2=self._new();
 
- _st($2)._code_(aCodeModel);
 
- $3=_st($2)._yourself();
 
- $1=$3;
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"on:",{aCodeModel:aCodeModel},smalltalk.HLCodeHandled.klass)})},
 
- args: ["aCodeModel"],
 
- source: "on: aCodeModel\x0a\x0a\x09^ self new \x0a    \x09code: aCodeModel;\x0a        yourself",
 
- messageSends: ["code:", "new", "yourself"],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLCodeHandled.klass);
 
- smalltalk.addClass('HLDoItExecuted', smalltalk.HLCodeHandled, [], 'Helios-Announcements');
 
- smalltalk.HLDoItExecuted.comment="I am emitted by a `HLCodeWidget` after a DoIt has been executed.";
 
- smalltalk.addClass('HLDoItRequested', smalltalk.HLCodeHandled, [], 'Helios-Announcements');
 
- smalltalk.HLDoItRequested.comment="I am emitted by a `HLCodeWidget` before a DoIt is executed.";
 
- smalltalk.addClass('HLInspectItRequested', smalltalk.HLCodeHandled, [], 'Helios-Announcements');
 
- smalltalk.HLInspectItRequested.comment="I am emitted by a `HLCodeWidget` before an object is inspected.";
 
- smalltalk.addClass('HLPrintItRequested', smalltalk.HLCodeHandled, [], 'Helios-Announcements');
 
- smalltalk.HLPrintItRequested.comment="I am emitted by a `HLCodeWidget` before an object is printed.";
 
- smalltalk.addClass('HLDebuggerAnnouncement', smalltalk.HLAnnouncement, ['context'], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "context",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@context"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"context",{},smalltalk.HLDebuggerAnnouncement)})},
 
- args: [],
 
- source: "context\x0a\x09^ context",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLDebuggerAnnouncement);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "context:",
 
- protocol: 'accessing',
 
- fn: function (aContext){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@context"]=aContext;
 
- return self}, function($ctx1) {$ctx1.fill(self,"context:",{aContext:aContext},smalltalk.HLDebuggerAnnouncement)})},
 
- args: ["aContext"],
 
- source: "context: aContext\x0a\x09context := aContext",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLDebuggerAnnouncement);
 
- smalltalk.addClass('HLDebuggerContextSelected', smalltalk.HLDebuggerAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "context",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@context"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"context",{},smalltalk.HLDebuggerContextSelected)})},
 
- args: [],
 
- source: "context\x0a\x09^ context",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLDebuggerContextSelected);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "context:",
 
- protocol: 'accessing',
 
- fn: function (aContext){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@context"]=aContext;
 
- return self}, function($ctx1) {$ctx1.fill(self,"context:",{aContext:aContext},smalltalk.HLDebuggerContextSelected)})},
 
- args: ["aContext"],
 
- source: "context: aContext\x0a\x09context := aContext",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLDebuggerContextSelected);
 
- smalltalk.addClass('HLDebuggerStepped', smalltalk.HLDebuggerAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLDebuggerWhere', smalltalk.HLDebuggerAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLDiveRequested', smalltalk.HLAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLEditComment', smalltalk.HLAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLErrorRaised', smalltalk.HLAnnouncement, ['error'], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "error",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@error"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"error",{},smalltalk.HLErrorRaised)})},
 
- args: [],
 
- source: "error\x0a\x09^ error",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLErrorRaised);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "error:",
 
- protocol: 'accessing',
 
- fn: function (anError){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@error"]=anError;
 
- return self}, function($ctx1) {$ctx1.fill(self,"error:",{anError:anError},smalltalk.HLErrorRaised)})},
 
- args: ["anError"],
 
- source: "error: anError\x0a\x09error := anError",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLErrorRaised);
 
- smalltalk.addClass('HLCompileErrorRaised', smalltalk.HLErrorRaised, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLParseErrorRaised', smalltalk.HLErrorRaised, ['line', 'column', 'message'], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "column",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@column"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"column",{},smalltalk.HLParseErrorRaised)})},
 
- args: [],
 
- source: "column\x0a\x09^ column",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLParseErrorRaised);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "column:",
 
- protocol: 'accessing',
 
- fn: function (anInteger){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@column"]=anInteger;
 
- return self}, function($ctx1) {$ctx1.fill(self,"column:",{anInteger:anInteger},smalltalk.HLParseErrorRaised)})},
 
- args: ["anInteger"],
 
- source: "column: anInteger\x0a\x09column := anInteger",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLParseErrorRaised);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "line",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@line"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"line",{},smalltalk.HLParseErrorRaised)})},
 
- args: [],
 
- source: "line\x0a\x09^ line",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLParseErrorRaised);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "line:",
 
- protocol: 'accessing',
 
- fn: function (anInteger){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@line"]=anInteger;
 
- return self}, function($ctx1) {$ctx1.fill(self,"line:",{anInteger:anInteger},smalltalk.HLParseErrorRaised)})},
 
- args: ["anInteger"],
 
- source: "line: anInteger\x0a\x09line := anInteger",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLParseErrorRaised);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "message",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@message"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"message",{},smalltalk.HLParseErrorRaised)})},
 
- args: [],
 
- source: "message\x0a\x09^ message",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLParseErrorRaised);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "message:",
 
- protocol: 'accessing',
 
- fn: function (aString){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@message"]=aString;
 
- return self}, function($ctx1) {$ctx1.fill(self,"message:",{aString:aString},smalltalk.HLParseErrorRaised)})},
 
- args: ["aString"],
 
- source: "message: aString\x0a\x09message := aString",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLParseErrorRaised);
 
- smalltalk.addClass('HLUnknownVariableErrorRaised', smalltalk.HLErrorRaised, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLFocusRequested', smalltalk.HLAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLClassesFocusRequested', smalltalk.HLFocusRequested, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLMethodsFocusRequested', smalltalk.HLFocusRequested, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLPackagesFocusRequested', smalltalk.HLFocusRequested, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLProtocolsFocusRequested', smalltalk.HLFocusRequested, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLSourceCodeFocusRequested', smalltalk.HLFocusRequested, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLInstVarAdded', smalltalk.HLAnnouncement, ['theClass', 'variableName'], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "theClass",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@theClass"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"theClass",{},smalltalk.HLInstVarAdded)})},
 
- args: [],
 
- source: "theClass\x0a\x09^ theClass",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLInstVarAdded);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "theClass:",
 
- protocol: 'accessing',
 
- fn: function (aClass){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@theClass"]=aClass;
 
- return self}, function($ctx1) {$ctx1.fill(self,"theClass:",{aClass:aClass},smalltalk.HLInstVarAdded)})},
 
- args: ["aClass"],
 
- source: "theClass: aClass\x0a\x09theClass := aClass",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLInstVarAdded);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "variableName",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@variableName"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"variableName",{},smalltalk.HLInstVarAdded)})},
 
- args: [],
 
- source: "variableName\x0a\x09^ variableName",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLInstVarAdded);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "variableName:",
 
- protocol: 'accessing',
 
- fn: function (aString){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@variableName"]=aString;
 
- return self}, function($ctx1) {$ctx1.fill(self,"variableName:",{aString:aString},smalltalk.HLInstVarAdded)})},
 
- args: ["aString"],
 
- source: "variableName: aString\x0a\x09variableName := aString",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLInstVarAdded);
 
- smalltalk.addClass('HLItemSelected', smalltalk.HLAnnouncement, ['item'], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "item",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@item"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"item",{},smalltalk.HLItemSelected)})},
 
- args: [],
 
- source: "item\x0a\x09^ item",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLItemSelected);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "item:",
 
- protocol: 'accessing',
 
- fn: function (anObject){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@item"]=anObject;
 
- return self}, function($ctx1) {$ctx1.fill(self,"item:",{anObject:anObject},smalltalk.HLItemSelected)})},
 
- args: ["anObject"],
 
- source: "item: anObject\x0a\x09item := anObject",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLItemSelected);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "on:",
 
- protocol: 'instance creation',
 
- fn: function (anItem){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $2,$3,$1;
 
- $2=self._new();
 
- _st($2)._item_(anItem);
 
- $3=_st($2)._yourself();
 
- $1=$3;
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"on:",{anItem:anItem},smalltalk.HLItemSelected.klass)})},
 
- args: ["anItem"],
 
- source: "on: anItem\x0a\x09^ self new\x0a    \x09item: anItem;\x0a        yourself",
 
- messageSends: ["item:", "new", "yourself"],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLItemSelected.klass);
 
- smalltalk.addClass('HLClassSelected', smalltalk.HLItemSelected, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLInstanceVariableSelected', smalltalk.HLItemSelected, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLMethodSelected', smalltalk.HLItemSelected, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLPackageSelected', smalltalk.HLItemSelected, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLProtocolSelected', smalltalk.HLItemSelected, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLSaveSourceCode', smalltalk.HLAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLSearchReferences', smalltalk.HLAnnouncement, ['searchString'], 'Helios-Announcements');
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "searchString",
 
- protocol: 'accessing',
 
- fn: function (){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- var $1;
 
- $1=self["@searchString"];
 
- return $1;
 
- }, function($ctx1) {$ctx1.fill(self,"searchString",{},smalltalk.HLSearchReferences)})},
 
- args: [],
 
- source: "searchString\x0a\x09^ searchString",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLSearchReferences);
 
- smalltalk.addMethod(
 
- smalltalk.method({
 
- selector: "searchString:",
 
- protocol: 'accessing',
 
- fn: function (aString){
 
- var self=this;
 
- return smalltalk.withContext(function($ctx1) { 
 
- self["@searchString"]=aString;
 
- return self}, function($ctx1) {$ctx1.fill(self,"searchString:",{aString:aString},smalltalk.HLSearchReferences)})},
 
- args: ["aString"],
 
- source: "searchString: aString\x0a\x09searchString := aString",
 
- messageSends: [],
 
- referencedClasses: []
 
- }),
 
- smalltalk.HLSearchReferences);
 
- smalltalk.addClass('HLShowCommentToggled', smalltalk.HLAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLShowInstanceToggled', smalltalk.HLAnnouncement, [], 'Helios-Announcements');
 
- smalltalk.addClass('HLSourceCodeSaved', smalltalk.HLAnnouncement, [], 'Helios-Announcements');
 
- });
 
 
  |