1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273 |
- Smalltalk current createPackage: 'Kernel-Objects' properties: #{}!
- nil subclass: #Object
- instanceVariableNames: ''
- category: 'Kernel-Objects'!
- !Object methodsFor: 'accessing'!
- yourself
- ^self
- !
- class
- <return self.klass>
- !
- size
- self error: 'Object not indexable'
- !
- instVarAt: aSymbol
- | varname |
- varname := aSymbol asString.
- <return self['@'+varname]>
- !
- instVarAt: aSymbol put: anObject
- | varname |
- varname := aSymbol asString.
- <self['@' + varname] = anObject>
- !
- basicAt: aString
- <return self[aString]>
- !
- basicAt: aString put: anObject
- <return self[aString] = anObject>
- !
- basicDelete: aString
- <delete self[aString]; return aString>
- !
- identityHash
- <return self.identityHash || (self.identityHash = smalltalk.nextId());>
- ! !
- !Object methodsFor: 'comparing'!
- = anObject
- ^self == anObject
- !
- ~= anObject
- ^(self = anObject) = false
- !
- == anObject
- ^self identityHash = anObject identityHash
- !
- ~~ anObject
- ^(self == anObject) = false
- ! !
- !Object methodsFor: 'converting'!
- -> anObject
- ^Association key: self value: anObject
- !
- asString
- ^self printString
- !
- asJavascript
- ^self asString
- !
- asJSON
- ^JSON parse: self asJSONString
- !
- asJSONString
- ^JSON stringify: self
- ! !
- !Object methodsFor: 'copying'!
- copy
- ^self shallowCopy postCopy
- !
- shallowCopy
- <
- var copy = self.klass._new();
- for(var i in self) {
- if(/^@.+/.test(i)) {
- copy[i] = self[i];
- }
- }
- return copy;
- >
- !
- deepCopy
- <
- var copy = self.klass._new();
- for(var i in self) {
- if(/^@.+/.test(i)) {
- copy[i] = self[i]._deepCopy();
- }
- }
- return copy;
- >
- !
- postCopy
- ! !
- !Object methodsFor: 'error handling'!
- error: aString
- Error signal: aString
- !
- subclassResponsibility
- self error: 'This method is a responsibility of a subclass'
- !
- shouldNotImplement
- self error: 'This method should not be implemented in ', self class name
- !
- try: aBlock catch: anotherBlock
- <try{result = aBlock()} catch(e) {result = anotherBlock(e)};
- return result;>
- !
- doesNotUnderstand: aMessage
- MessageNotUnderstood new
- receiver: self;
- message: aMessage;
- signal
- !
- halt
- self error: 'Halt encountered'
- !
- deprecatedAPI
- "Just a simple way to deprecate methods.
- #deprecatedAPI is in the 'error handling' protocol even if it doesn't throw an error,
- but it could in the future."
- console warn: thisContext home asString, ' is deprecated!! (in ', thisContext home home asString, ')'
- ! !
- !Object methodsFor: 'initialization'!
- initialize
- ! !
- !Object methodsFor: 'message handling'!
- perform: aSymbol
- ^self perform: aSymbol withArguments: #()
- !
- perform: aSymbol withArguments: aCollection
- ^self basicPerform: aSymbol asSelector withArguments: aCollection
- !
- basicPerform: aSymbol
- ^self basicPerform: aSymbol withArguments: #()
- !
- basicPerform: aSymbol withArguments: aCollection
- <return self[aSymbol].apply(self, aCollection);>
- ! !
- !Object methodsFor: 'printing'!
- printString
- ^'a ', self class name
- !
- printNl
- <console.log(self)>
- !
- log: aString block: aBlock
- | result |
- console log: aString, ' time: ', (Date millisecondsToRun: [result := aBlock value]) printString.
- ^result
- !
- storeString
- "Answer a String representation of the receiver from which the receiver
- can be reconstructed."
- ^ String streamContents: [:s | self storeOn: s]
- !
- storeOn: aStream
- aStream nextPutAll: self printString
- ! !
- !Object methodsFor: 'testing'!
- isKindOf: aClass
- ^(self isMemberOf: aClass)
- ifTrue: [true]
- ifFalse: [self class inheritsFrom: aClass]
- !
- isMemberOf: aClass
- ^self class = aClass
- !
- ifNil: aBlock
- "inlined in the Compiler"
- ^self
- !
- ifNil: aBlock ifNotNil: anotherBlock
- "inlined in the Compiler"
- ^anotherBlock value
- !
- ifNotNil: aBlock
- "inlined in the Compiler"
- ^aBlock value
- !
- ifNotNil: aBlock ifNil: anotherBlock
- "inlined in the Compiler"
- ^aBlock value
- !
- isNil
- ^false
- !
- notNil
- ^self isNil not
- !
- isClass
- ^false
- !
- isMetaclass
- ^false
- !
- isNumber
- ^false
- !
- isString
- ^false
- !
- isParseFailure
- ^false
- !
- isSymbol
- ^false
- ! !
- !Object class methodsFor: 'initialization'!
- initialize
- "no op"
- ! !
- Object subclass: #Smalltalk
- instanceVariableNames: ''
- category: 'Kernel-Objects'!
- !Smalltalk methodsFor: 'accessing'!
- classes
- <return self.classes()>
- !
- at: aString
- <return self[aString]>
- !
- basicParse: aString
- <return smalltalk.parser.parse(aString)>
- !
- parse: aString
- | result |
- self try: [result := self basicParse: aString] catch: [:ex | (self parseError: ex parsing: aString) signal].
- ^result
- !
- parseError: anException parsing: aString
- | row col message lines badLine code |
- <row = anException.line;
- col = anException.column;
- message = anException.message;>.
- lines := aString lines.
- badLine := lines at: row.
- badLine := (badLine copyFrom: 1 to: col - 1), ' ===>', (badLine copyFrom: col to: badLine size).
- lines at: row put: badLine.
- code := String streamContents: [:s |
- lines withIndexDo: [:l :i |
- s nextPutAll: i asString, ': ', l, String lf]].
- ^ Error new messageText: ('Parse error on line ' , row , ' column ' , col , ' : ' , message , ' Below is code with line numbers and ===> marker inserted:' , String lf, code)
- !
- reservedWords
- "JavaScript reserved words"
- <return self.reservedWords>
- !
- readJSObject: anObject
- <return self.readJSObject(anObject)>
- ! !
- !Smalltalk methodsFor: 'classes'!
- removeClass: aClass
- aClass isMetaclass ifTrue: [self error: aClass asString, ' is a Metaclass and cannot be removed!!'].
- aClass methodDictionary values do: [:each |
- aClass removeCompiledMethod: each].
- aClass class methodDictionary values do: [:each |
- aClass class removeCompiledMethod: each].
- self basicDelete: aClass name
- ! !
- !Smalltalk methodsFor: 'packages'!
- packages
- "Return all Package instances in the system."
- <return self.packages.all()>
- !
- packageAt: packageName
- <return self.packages[packageName]>
- !
- packageAt: packageName ifAbsent: aBlock
- ^(self packageAt: packageName) ifNil: aBlock
- !
- removePackage: packageName
- "Removes a package and all its classes."
- | pkg |
- pkg := self packageAt: packageName ifAbsent: [self error: 'Missing package: ', packageName].
- pkg classes do: [:each |
- self removeClass: each].
- self deletePackage: packageName
- !
- renamePackage: packageName to: newName
- "Rename a package."
- | pkg |
- pkg := self packageAt: packageName ifAbsent: [self error: 'Missing package: ', packageName].
- (self packageAt: newName) ifNotNil: [self error: 'Already exists a package called: ', newName].
- <smalltalk.packages[newName] = smalltalk.packages[packageName]>.
- pkg name: newName.
- self deletePackage: packageName.
- ! !
- !Smalltalk methodsFor: 'private'!
- createPackage: packageName
- "Create and bind a new package with given name and return it."
- <return smalltalk.addPackage(packageName, nil)>
- !
- deletePackage: packageName
- "Deletes a package by deleting its binding, but does not check if it contains classes etc.
- To remove a package, use #removePackage instead."
- <delete smalltalk.packages[packageName]>
- !
- createPackage: packageName properties: aDict
- "Create and bind a new package with given name and return it."
- | object |
- <object = {};>.
- aDict keysAndValuesDo: [:key :value |
- <object[key] = value>.
- ].
- <return smalltalk.addPackage(packageName, object)>
- ! !
- Smalltalk class instanceVariableNames: 'current'!
- !Smalltalk class methodsFor: 'accessing'!
- current
- <return smalltalk>
- ! !
- Object subclass: #Package
- instanceVariableNames: 'commitPathJs commitPathSt'
- category: 'Kernel-Objects'!
- !Package commentStamp!
- A Package is similar to a "class category" typically found in other Smalltalks like Pharo or Squeak. Amber does not have class categories anymore, it had in the beginning but now each class in the system knows which package it belongs to.
- A Package has a name, an Array of "requires", a comment and a Dictionary with other optional key value attributes. A Package can also be queried for its classes, but it will then resort to a reverse scan of all classes to find them.
- Packages are manipulated through "Smalltalk current", like for example finding one based on a name:
- Smalltalk current packageAt: 'Kernel'
- ...but you can also use:
- Package named: 'Kernel'
- A Package differs slightly from a Monticello package which can span multiple class categories using a naming convention based on hyphenation. But just as in Monticello a Package supports "class extensions" so a Package
- can define behaviors in foreign classes using a naming convention for method categories where the category starts with an asterisk and then the name of the owning package follows. This can easily be seen in for example class
- String where the method category "*IDE" defines #inspectOn: which thus is a method belonging to the IDE package.!
- !Package methodsFor: 'accessing'!
- name
- <return self.pkgName>
- !
- name: aString
- <self.pkgName = aString>
- !
- dependencies
- ^self propertyAt: 'dependencies' ifAbsent: [#()]
- !
- dependencies: anArray
- ^self propertyAt: 'dependencies' put: anArray
- !
- properties
- ^Smalltalk current readJSObject: (self basicAt: 'properties')
- !
- properties: aDict
- "We store it as a javascript object."
-
- | object |
- <object = {};>.
- aDict keysAndValuesDo: [:key :value |
- <object[key] = value>.
- ].
- <return self.properties = object>
- !
- commitPathJs
- ^ commitPathJs ifNil: [self class defaultCommitPathJs]
- !
- commitPathJs: aString
- commitPathJs := aString
- !
- commitPathSt
- ^ commitPathSt ifNil: [self class defaultCommitPathSt]
- !
- commitPathSt: aString
- commitPathSt := aString
- ! !
- !Package methodsFor: 'classes'!
- classes
- "We need to do a reverse scan."
- ^Smalltalk current classes select: [:c | c package == self]
- ! !
- !Package methodsFor: 'printing'!
- printString
- ^self name
- ! !
- !Package methodsFor: 'private'!
- propertiesAsJSON
- <return JSON.stringify(self.properties)>
- !
- jsProperties
- <return self.properties>
- !
- jsProperties: aJSObject
- <return self.properties = aJSObject>
- ! !
- !Package methodsFor: 'properties'!
- propertyAt: key
- <return self.properties[key]>
- !
- propertyAt: key put: value
- <return self.properties[key] = value>
- !
- propertyAt: key ifAbsent: block
- ^(self propertyAt: key) ifNil: [block value]
- ! !
- Package class instanceVariableNames: 'defaultCommitPathJs defaultCommitPathSt'!
- !Package class methodsFor: 'commit paths'!
- defaultCommitPathJs
- ^ defaultCommitPathJs ifNil: [ defaultCommitPathJs := 'js']
- !
- defaultCommitPathJs: aString
- defaultCommitPathJs := aString
- !
- defaultCommitPathSt
- ^ defaultCommitPathSt ifNil: [ defaultCommitPathSt := 'st']
- !
- defaultCommitPathSt: aString
- defaultCommitPathSt := aString
- !
- resetCommitPaths
- defaultCommitPathJs := nil.
- defaultCommitPathSt := nil.
- ! !
- !Package class methodsFor: 'not yet classified'!
- named: aPackageName
- ^Smalltalk current packageAt: aPackageName
- !
- named: aPackageName ifAbsent: aBlock
- ^Smalltalk current packageAt: aPackageName ifAbsent: aBlock
- ! !
- Object subclass: #Number
- instanceVariableNames: ''
- category: 'Kernel-Objects'!
- !Number methodsFor: ''!
- ! !
- !Number methodsFor: 'accessing'!
- identityHash
- ^self asString, 'n'
- ! !
- !Number methodsFor: 'arithmetic'!
- + aNumber
- "Inlined in the Compiler"
- <return self + aNumber>
- !
- - aNumber
- "Inlined in the Compiler"
- <return self - aNumber>
- !
- * aNumber
- "Inlined in the Compiler"
- <return self * aNumber>
- !
- / aNumber
- "Inlined in the Compiler"
- <return self / aNumber>
- !
- max: aNumber
- <return Math.max(self, aNumber);>
- !
- min: aNumber
- <return Math.min(self, aNumber);>
- !
- negated
- ^0 - self
- !
- \\ aNumber
- <return self % aNumber>
- !
- sqrt
- <return Math.sqrt(self)>
- !
- squared
- ^self * self
- ! !
- !Number methodsFor: 'comparing'!
- = aNumber
- aNumber isNumber ifFalse: [^false].
- <return Number(self) == aNumber>
- !
- > aNumber
- "Inlined in the Compiler"
- <return self >> aNumber>
- !
- < aNumber
- "Inlined in the Compiler"
- <return self < aNumber>
- !
- >= aNumber
- "Inlined in the Compiler"
- <return self >>= aNumber>
- !
- <= aNumber
- "Inlined in the Compiler"
- <return self <= aNumber>
- ! !
- !Number methodsFor: 'converting'!
- rounded
- <return Math.round(self);>
- !
- truncated
- |result|
- self >= 0
- ifTrue: [<result = Math.floor(self);>]
- ifFalse: [<result = (Math.floor(self * (-1)) * (-1));>].
- ^ result
- !
- to: aNumber
- | array first last count |
- first := self truncated.
- last := aNumber truncated + 1.
- count := 1.
- array := Array new.
- (last - first) timesRepeat: [
- array at: count put: first.
- count := count + 1.
- first := first + 1].
- ^array
- !
- asString
- ^self printString
- !
- asJavascript
- ^'(', self printString, ')'
- !
- atRandom
- ^(Random new next * self) truncated + 1
- !
- @ aNumber
- ^Point x: self y: aNumber
- !
- asPoint
- ^Point x: self y: self
- !
- to: stop by: step
- | array value pos |
- value := self.
- array := Array new.
- pos := 1.
- step = 0 ifTrue: [self error: 'step must be non-zero'].
- step < 0
- ifTrue: [[ value >= stop ] whileTrue: [
- array at: pos put: value.
- pos := pos + 1.
- value := value + step]]
- ifFalse: [[ value <= stop ] whileTrue: [
- array at: pos put: value.
- pos := pos + 1.
- value := value + step]].
- ^array
- ! !
- !Number methodsFor: 'copying'!
- deepCopy
- ^self copy
- !
- copy
- ^self
- ! !
- !Number methodsFor: 'enumerating'!
- timesRepeat: aBlock
- | integer count |
- integer := self truncated.
- count := 1.
- [count > self] whileFalse: [
- aBlock value.
- count := count + 1]
- !
- to: stop do: aBlock
- "Evaluate aBlock for each number from self to aNumber."
- | nextValue |
- nextValue := self.
- [nextValue <= stop]
- whileTrue:
- [aBlock value: nextValue.
- nextValue := nextValue + 1]
- !
- to: stop by: step do: aBlock
- | value |
- value := self.
- step = 0 ifTrue: [self error: 'step must be non-zero'].
- step < 0
- ifTrue: [[ value >= stop ] whileTrue: [
- aBlock value: value.
- value := value + step]]
- ifFalse: [[ value <= stop ] whileTrue: [
- aBlock value: value.
- value := value + step]]
- ! !
- !Number methodsFor: 'printing'!
- printString
- <return String(self)>
- !
- printShowingDecimalPlaces: placesDesired
- <return self.toFixed(placesDesired)>
- ! !
- !Number methodsFor: 'testing'!
- isNumber
- ^true
- !
- even
- ^ 0 = (self \\ 2)
- !
- odd
- ^ self even not
- ! !
- !Number methodsFor: 'timeouts/intervals'!
- clearInterval
- <clearInterval(Number(self))>
- !
- clearTimeout
- <clearTimeout(Number(self))>
- ! !
- !Number class methodsFor: 'instance creation'!
- pi
- <return Math.PI>
- ! !
- Object subclass: #Boolean
- instanceVariableNames: ''
- category: 'Kernel-Objects'!
- !Boolean methodsFor: 'comparing'!
- = aBoolean
- aBoolean class = self class ifFalse: [^false].
- <return Boolean(self == true) == aBoolean>
- ! !
- !Boolean methodsFor: 'controlling'!
- ifTrue: aBlock
- "inlined in the Compiler"
- ^self ifTrue: aBlock ifFalse: []
- !
- ifFalse: aBlock
- "inlined in the Compiler"
- ^self ifTrue: [] ifFalse: aBlock
- !
- ifFalse: aBlock ifTrue: anotherBlock
- "inlined in the Compiler"
- ^self ifTrue: anotherBlock ifFalse: aBlock
- !
- ifTrue: aBlock ifFalse: anotherBlock
- "inlined in the Compiler"
- <
- if(self == true) {
- return aBlock();
- } else {
- return anotherBlock();
- }
- >
- !
- and: aBlock
- ^self = true
- ifTrue: aBlock
- ifFalse: [false]
- !
- or: aBlock
- ^self = true
- ifTrue: [true]
- ifFalse: aBlock
- !
- not
- ^self = false
- !
- & aBoolean
- <
- if(self == true) {
- return aBoolean;
- } else {
- return false;
- }
- >
- !
- | aBoolean
- <
- if(self == true) {
- return true;
- } else {
- return aBoolean;
- }
- >
- ! !
- !Boolean methodsFor: 'copying'!
- shallowCopy
- ^self
- !
- deepCopy
- ^self
- ! !
- !Boolean methodsFor: 'printing'!
- printString
- <return self.toString()>
- ! !
- Object subclass: #Date
- instanceVariableNames: ''
- category: 'Kernel-Objects'!
- !Date commentStamp!
- The Date class is used to work with dates and times.!
- !Date methodsFor: 'accessing'!
- year
- <return self.getFullYear()>
- !
- month
- <return self.getMonth() + 1>
- !
- month: aNumber
- <self.setMonth(aNumber - 1)>
- !
- day
- ^self dayOfWeek
- !
- dayOfWeek
- <return self.getDay() + 1>
- !
- dayOfWeek: aNumber
- <return self.setDay(aNumber - 1)>
- !
- day: aNumber
- self day: aNumber
- !
- year: aNumber
- <self.setFullYear(aNumber)>
- !
- dayOfMonth
- <return self.getDate()>
- !
- dayOfMonth: aNumber
- <self.setDate(aNumber)>
- !
- time
- <return self.getTime()>
- !
- time: aNumber
- <self.setTime(aNumber)>
- !
- hours: aNumber
- <self.setHours(aNumber)>
- !
- minutes: aNumber
- <self.setMinutes(aNumber)>
- !
- seconds: aNumber
- <self.setSeconds(aNumber)>
- !
- milliseconds: aNumber
- <self.setMilliseconds(aNumber)>
- !
- hours
- <return self.getHours()>
- !
- minutes
- <return self.getMinutes()>
- !
- seconds
- <return self.getSeconds()>
- !
- milliseconds
- <return self.getMilliseconds()>
- ! !
- !Date methodsFor: 'arithmetic'!
- - aDate
- <return self - aDate>
- !
- + aDate
- <return self + aDate>
- ! !
- !Date methodsFor: 'comparing'!
- < aDate
- <return self < aDate>
- !
- > aDate
- <return self >> aDate>
- !
- <= aDate
- <return self <= aDate>
- !
- >= aDate
- <return self >>= aDate>
- ! !
- !Date methodsFor: 'converting'!
- asString
- <return self.toString()>
- !
- asMilliseconds
- ^self time
- !
- asDateString
- <return self.toDateString()>
- !
- asTimeString
- <return self.toTimeString()>
- !
- asLocaleString
- <return self.toLocaleString()>
- !
- asNumber
- ^self asMilliseconds
- ! !
- !Date methodsFor: 'printing'!
- printString
- ^self asString
- ! !
- !Date class methodsFor: 'instance creation'!
- new: anObject
- <return new Date(anObject)>
- !
- fromString: aString
- "Example: Date fromString('2011/04/15 00:00:00')"
- ^self new: aString
- !
- fromSeconds: aNumber
- ^self fromMilliseconds: aNumber * 1000
- !
- fromMilliseconds: aNumber
- ^self new: aNumber
- !
- today
- ^self new
- !
- now
- ^self today
- !
- millisecondsToRun: aBlock
- | t |
- t := Date now.
- aBlock value.
- ^Date now - t
- ! !
- Object subclass: #UndefinedObject
- instanceVariableNames: ''
- category: 'Kernel-Objects'!
- !UndefinedObject methodsFor: 'class creation'!
- subclass: aString instanceVariableNames: anotherString
- ^self subclass: aString instanceVariableNames: anotherString package: nil
- !
- subclass: aString instanceVariableNames: aString2 category: aString3
- "Kept for compatibility."
- self deprecatedAPI.
- ^self subclass: aString instanceVariableNames: aString2 package: aString3
- !
- subclass: aString instanceVariableNames: aString2 package: aString3
- ^ClassBuilder new
- superclass: self subclass: aString instanceVariableNames: aString2 package: aString3
- ! !
- !UndefinedObject methodsFor: 'copying'!
- shallowCopy
- ^self
- !
- deepCopy
- ^self
- ! !
- !UndefinedObject methodsFor: 'printing'!
- printString
- ^'nil'
- ! !
- !UndefinedObject methodsFor: 'testing'!
- ifNil: aBlock
- "inlined in the Compiler"
- ^self ifNil: aBlock ifNotNil: []
- !
- ifNotNil: aBlock
- "inlined in the Compiler"
- ^self
- !
- ifNil: aBlock ifNotNil: anotherBlock
- "inlined in the Compiler"
- ^aBlock value
- !
- ifNotNil: aBlock ifNil: anotherBlock
- "inlined in the Compiler"
- ^anotherBlock value
- !
- isNil
- ^true
- !
- notNil
- ^false
- ! !
- !UndefinedObject class methodsFor: 'instance creation'!
- new
- self error: 'You cannot create new instances of UndefinedObject. Use nil'
- ! !
- Object subclass: #Random
- instanceVariableNames: ''
- category: 'Kernel-Objects'!
- !Random methodsFor: 'accessing'!
- next
- <return Math.random()>
- !
- next: anInteger
- ^(1 to: anInteger) collect: [:each | self next]
- ! !
- Object subclass: #Point
- instanceVariableNames: 'x y'
- category: 'Kernel-Objects'!
- !Point methodsFor: 'accessing'!
- x
- ^x
- !
- y
- ^y
- !
- y: aNumber
- y := aNumber
- !
- x: aNumber
- x := aNumber
- ! !
- !Point methodsFor: 'arithmetic'!
- * aPoint
- ^Point x: self x * aPoint asPoint x y: self y * aPoint asPoint y
- !
- + aPoint
- ^Point x: self x + aPoint asPoint x y: self y + aPoint asPoint y
- !
- - aPoint
- ^Point x: self x - aPoint asPoint x y: self y - aPoint asPoint y
- !
- / aPoint
- ^Point x: self x / aPoint asPoint x y: self y / aPoint asPoint y
- !
- = aPoint
- ^aPoint class = self class and: [
- (aPoint x = self x) & (aPoint y = self y)]
- ! !
- !Point methodsFor: 'converting'!
- asPoint
- ^self
- ! !
- !Point class methodsFor: 'instance creation'!
- x: aNumber y: anotherNumber
- ^self new
- x: aNumber;
- y: anotherNumber;
- yourself
- ! !
- Object subclass: #JSObjectProxy
- instanceVariableNames: 'jsObject'
- category: 'Kernel-Objects'!
- !JSObjectProxy methodsFor: 'accessing'!
- jsObject: aJSObject
- jsObject := aJSObject
- !
- jsObject
- ^jsObject
- !
- at: aString
- <return self['@jsObject'][aString]>
- !
- at: aString put: anObject
- <self['@jsObject'][aString] = anObject>
- ! !
- !JSObjectProxy methodsFor: 'proxy'!
- printString
- ^self jsObject toString
- !
- inspectOn: anInspector
- | variables |
- variables := Dictionary new.
- variables at: '#self' put: self jsObject.
- anInspector setLabel: self printString.
- <for(var i in self['@jsObject']) {
- variables._at_put_(i, self['@jsObject'][i]);
- }>.
- anInspector setVariables: variables
- !
- doesNotUnderstand: aMessage
- | obj selector jsSelector arguments |
- obj := self jsObject.
- selector := aMessage selector.
- jsSelector := selector asJavaScriptSelector.
- arguments := aMessage arguments.
- <if(obj[jsSelector] !!= undefined) {return smalltalk.send(obj, jsSelector, arguments)}>.
- super doesNotUnderstand: aMessage
- ! !
- !JSObjectProxy class methodsFor: 'instance creation'!
- on: aJSObject
- ^self new
- jsObject: aJSObject;
- yourself
- ! !
|