Kernel-Objects.st 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735
  1. Smalltalk current createPackage: 'Kernel-Objects'!
  2. nil subclass: #Object
  3. instanceVariableNames: ''
  4. package: 'Kernel-Objects'!
  5. !Object commentStamp!
  6. *Object is the root of the Smalltalk class system*. All classes in the system are subclasses of Object.
  7. Object provides default behavior common to all normal objects, such as:
  8. - access
  9. - copying
  10. - comparison
  11. - error handling
  12. - message sending
  13. - reflection
  14. Also utility messages that all objects should respond to are defined here.
  15. Object has no instance variable.
  16. ##Access
  17. Instance variables can be accessed with `#instVarAt:` and `#instVarAt:put:`. `Object >> instanceVariableNames` answers a collection of all instance variable names.
  18. Accessing JavaScript properties of an object is done through `#basicAt:`, `#basicAt:put:` and `basicDelete:`.
  19. ##Copying
  20. Copying an object is handled by `#copy` and `#deepCopy`. The first one performs a shallow copy of the receiver, while the second one performs a deep copy.
  21. The hook method `#postCopy` can be overriden in subclasses to copy fields as necessary to complete the full copy. It will be sent by the copy of the receiver.
  22. ##Comparison
  23. Objects understand equality `#=` and identity `#==` comparison.
  24. ##Error handling
  25. - `#halt` is the typical message to use for inserting breakpoints during debugging.
  26. - `#error:` throws a generic error exception
  27. - `#doesNotUnderstand:` handles the fact that there was an attempt to send the given message to the receiver but the receiver does not understand this message.
  28. Overriding this message can be useful to implement proxies for example.!
  29. !Object methodsFor: 'accessing'!
  30. basicAt: aString
  31. <return self[aString]>
  32. !
  33. basicAt: aString put: anObject
  34. <return self[aString] = anObject>
  35. !
  36. basicDelete: aString
  37. <delete self[aString]; return aString>
  38. !
  39. class
  40. <return self.klass>
  41. !
  42. identityHash
  43. <
  44. var hash=self.identityHash;
  45. if (hash) return hash;
  46. hash=smalltalk.nextId();
  47. Object.defineProperty(self, 'identityHash', {value:hash});
  48. return hash;
  49. >
  50. !
  51. instVarAt: aString
  52. < return self['@'+aString] >
  53. !
  54. instVarAt: aString put: anObject
  55. < self['@' + aString] = anObject >
  56. !
  57. size
  58. self error: 'Object not indexable'
  59. !
  60. value
  61. <return self.valueOf()>
  62. !
  63. yourself
  64. ^self
  65. ! !
  66. !Object methodsFor: 'comparing'!
  67. = anObject
  68. ^self == anObject
  69. !
  70. == anObject
  71. ^self identityHash = anObject identityHash
  72. !
  73. ~= anObject
  74. ^(self = anObject) = false
  75. !
  76. ~~ anObject
  77. ^(self == anObject) = false
  78. ! !
  79. !Object methodsFor: 'converting'!
  80. -> anObject
  81. ^Association key: self value: anObject
  82. !
  83. asJSON
  84. | variables |
  85. variables := HashedCollection new.
  86. self class allInstanceVariableNames do: [:each |
  87. variables at: each put: (self instVarAt: each) asJSON].
  88. ^variables
  89. !
  90. asJSONString
  91. ^JSON stringify: self asJSON
  92. !
  93. asJavascript
  94. ^self asString
  95. !
  96. asString
  97. ^self printString
  98. !
  99. test
  100. | a |
  101. a := 1.
  102. self halt
  103. ! !
  104. !Object methodsFor: 'copying'!
  105. copy
  106. ^self shallowCopy postCopy
  107. !
  108. deepCopy
  109. <
  110. var copy = self.klass._new();
  111. for(var i in self) {
  112. if(/^@.+/.test(i)) {
  113. copy[i] = self[i]._deepCopy();
  114. }
  115. }
  116. return copy;
  117. >
  118. !
  119. postCopy
  120. !
  121. shallowCopy
  122. <
  123. var copy = self.klass._new();
  124. for(var i in self) {
  125. if(/^@.+/.test(i)) {
  126. copy[i] = self[i];
  127. }
  128. }
  129. return copy;
  130. >
  131. ! !
  132. !Object methodsFor: 'error handling'!
  133. deprecatedAPI
  134. "Just a simple way to deprecate methods.
  135. #deprecatedAPI is in the 'error handling' protocol even if it doesn't throw an error,
  136. but it could in the future."
  137. console warn: thisContext home asString, ' is deprecated!! (in ', thisContext home home asString, ')'
  138. !
  139. doesNotUnderstand: aMessage
  140. MessageNotUnderstood new
  141. receiver: self;
  142. message: aMessage;
  143. signal
  144. !
  145. error: aString
  146. Error signal: aString
  147. !
  148. halt
  149. self error: 'Halt encountered'
  150. !
  151. shouldNotImplement
  152. self error: 'This method should not be implemented in ', self class name
  153. !
  154. subclassResponsibility
  155. self error: 'This method is a responsibility of a subclass'
  156. !
  157. throw: anObject
  158. < throw anObject >
  159. !
  160. try: aBlock catch: anotherBlock
  161. <try{return aBlock()} catch(e) {return anotherBlock(e)}>
  162. ! !
  163. !Object methodsFor: 'initialization'!
  164. initialize
  165. ! !
  166. !Object methodsFor: 'message handling'!
  167. basicPerform: aString
  168. ^self basicPerform: aString withArguments: #()
  169. !
  170. basicPerform: aString withArguments: aCollection
  171. <return self[aString].apply(self, aCollection);>
  172. !
  173. perform: aString
  174. ^self perform: aString withArguments: #()
  175. !
  176. perform: aString withArguments: aCollection
  177. <return smalltalk.send(self, aString._asSelector(), aCollection)>
  178. ! !
  179. !Object methodsFor: 'printing'!
  180. printOn: aStream
  181. "Append to the aStream, a string representing the receiver."
  182. aStream nextPutAll: (self class name first isVowel
  183. ifTrue: [ 'an ' ]
  184. ifFalse: [ 'a ' ]).
  185. aStream nextPutAll: self class name
  186. !
  187. printString
  188. "Answer a String representation of the receiver."
  189. ^ String streamContents: [ :stream | self printOn: stream ]
  190. ! !
  191. !Object methodsFor: 'streaming'!
  192. putOn: aStream
  193. aStream nextPut: self
  194. ! !
  195. !Object methodsFor: 'testing'!
  196. ifNil: aBlock
  197. "inlined in the Compiler"
  198. ^self
  199. !
  200. ifNil: aBlock ifNotNil: anotherBlock
  201. "inlined in the Compiler"
  202. ^anotherBlock value: self
  203. !
  204. ifNotNil: aBlock
  205. "inlined in the Compiler"
  206. ^aBlock value: self
  207. !
  208. ifNotNil: aBlock ifNil: anotherBlock
  209. "inlined in the Compiler"
  210. ^aBlock value: self
  211. !
  212. isBoolean
  213. ^ false
  214. !
  215. isClass
  216. ^false
  217. !
  218. isImmutable
  219. ^ false
  220. !
  221. isKindOf: aClass
  222. ^(self isMemberOf: aClass)
  223. ifTrue: [true]
  224. ifFalse: [self class inheritsFrom: aClass]
  225. !
  226. isMemberOf: aClass
  227. ^self class = aClass
  228. !
  229. isMetaclass
  230. ^false
  231. !
  232. isNil
  233. ^false
  234. !
  235. isNumber
  236. ^false
  237. !
  238. isParseFailure
  239. ^false
  240. !
  241. isString
  242. ^false
  243. !
  244. isSymbol
  245. ^false
  246. !
  247. notNil
  248. ^self isNil not
  249. !
  250. respondsTo: aSelector
  251. ^self class canUnderstand: aSelector
  252. ! !
  253. !Object class methodsFor: 'initialization'!
  254. initialize
  255. "no op"
  256. ! !
  257. Object subclass: #Boolean
  258. instanceVariableNames: ''
  259. package: 'Kernel-Objects'!
  260. !Boolean commentStamp!
  261. Boolean wraps the JavaScript `Boolean()` constructor. The `true` and `false` objects are the JavaScript boolean objects.
  262. Boolean defines the protocol for logic testing operations and conditional control structures for the logical values.
  263. Boolean instances are weither `true` or `false`.!
  264. !Boolean methodsFor: 'comparing'!
  265. = aBoolean
  266. <
  267. if(!! aBoolean._isBoolean || !! aBoolean._isBoolean()) {
  268. return false;
  269. }
  270. return Boolean(self == true) == aBoolean
  271. >
  272. !
  273. == aBoolean
  274. ^self = aBoolean
  275. ! !
  276. !Boolean methodsFor: 'controlling'!
  277. & aBoolean
  278. <
  279. if(self == true) {
  280. return aBoolean;
  281. } else {
  282. return false;
  283. }
  284. >
  285. !
  286. and: aBlock
  287. ^self = true
  288. ifTrue: aBlock
  289. ifFalse: [false]
  290. !
  291. ifFalse: aBlock
  292. "inlined in the Compiler"
  293. ^self ifTrue: [] ifFalse: aBlock
  294. !
  295. ifFalse: aBlock ifTrue: anotherBlock
  296. "inlined in the Compiler"
  297. ^self ifTrue: anotherBlock ifFalse: aBlock
  298. !
  299. ifTrue: aBlock
  300. "inlined in the Compiler"
  301. ^self ifTrue: aBlock ifFalse: []
  302. !
  303. ifTrue: aBlock ifFalse: anotherBlock
  304. "inlined in the Compiler"
  305. <
  306. if(self == true) {
  307. return aBlock();
  308. } else {
  309. return anotherBlock();
  310. }
  311. >
  312. !
  313. not
  314. ^self = false
  315. !
  316. or: aBlock
  317. ^self = true
  318. ifTrue: [true]
  319. ifFalse: aBlock
  320. !
  321. | aBoolean
  322. <
  323. if(self == true) {
  324. return true;
  325. } else {
  326. return aBoolean;
  327. }
  328. >
  329. ! !
  330. !Boolean methodsFor: 'converting'!
  331. asJSON
  332. ^self
  333. !
  334. asString
  335. < return self.toString() >
  336. ! !
  337. !Boolean methodsFor: 'copying'!
  338. deepCopy
  339. ^self
  340. !
  341. shallowCopy
  342. ^self
  343. ! !
  344. !Boolean methodsFor: 'printing'!
  345. printOn: aStream
  346. aStream nextPutAll: self asString
  347. ! !
  348. !Boolean methodsFor: 'testing'!
  349. isBoolean
  350. ^ true
  351. !
  352. isImmutable
  353. ^ true
  354. ! !
  355. Object subclass: #Date
  356. instanceVariableNames: ''
  357. package: 'Kernel-Objects'!
  358. !Date commentStamp!
  359. The Date class is used to work with dates and times. Therefore `Date today` and `Date now` are both valid in
  360. Amber and answer the same date object.
  361. Date wraps the `Date()` JavaScript constructor, and Smalltalk date objects are JavaScript date objects.!
  362. !Date methodsFor: 'accessing'!
  363. day
  364. ^self dayOfWeek
  365. !
  366. day: aNumber
  367. self dayOfWeek: aNumber
  368. !
  369. dayOfMonth
  370. <return self.getDate()>
  371. !
  372. dayOfMonth: aNumber
  373. <self.setDate(aNumber)>
  374. !
  375. dayOfWeek
  376. <return self.getDay() + 1>
  377. !
  378. dayOfWeek: aNumber
  379. <return self.setDay(aNumber - 1)>
  380. !
  381. hours
  382. <return self.getHours()>
  383. !
  384. hours: aNumber
  385. <self.setHours(aNumber)>
  386. !
  387. milliseconds
  388. <return self.getMilliseconds()>
  389. !
  390. milliseconds: aNumber
  391. <self.setMilliseconds(aNumber)>
  392. !
  393. minutes
  394. <return self.getMinutes()>
  395. !
  396. minutes: aNumber
  397. <self.setMinutes(aNumber)>
  398. !
  399. month
  400. <return self.getMonth() + 1>
  401. !
  402. month: aNumber
  403. <self.setMonth(aNumber - 1)>
  404. !
  405. seconds
  406. <return self.getSeconds()>
  407. !
  408. seconds: aNumber
  409. <self.setSeconds(aNumber)>
  410. !
  411. time
  412. <return self.getTime()>
  413. !
  414. time: aNumber
  415. <self.setTime(aNumber)>
  416. !
  417. year
  418. <return self.getFullYear()>
  419. !
  420. year: aNumber
  421. <self.setFullYear(aNumber)>
  422. ! !
  423. !Date methodsFor: 'arithmetic'!
  424. + aDate
  425. <return self + aDate>
  426. !
  427. - aDate
  428. <return self - aDate>
  429. ! !
  430. !Date methodsFor: 'comparing'!
  431. < aDate
  432. <return self < aDate>
  433. !
  434. <= aDate
  435. <return self <= aDate>
  436. !
  437. > aDate
  438. <return self >> aDate>
  439. !
  440. >= aDate
  441. <return self >>= aDate>
  442. ! !
  443. !Date methodsFor: 'converting'!
  444. asDateString
  445. <return self.toDateString()>
  446. !
  447. asLocaleString
  448. <return self.toLocaleString()>
  449. !
  450. asMilliseconds
  451. ^self time
  452. !
  453. asNumber
  454. ^self asMilliseconds
  455. !
  456. asString
  457. <return self.toString()>
  458. !
  459. asTimeString
  460. <return self.toTimeString()>
  461. ! !
  462. !Date methodsFor: 'printing'!
  463. printOn: aStream
  464. aStream nextPutAll: self asString
  465. ! !
  466. !Date class methodsFor: 'instance creation'!
  467. fromMilliseconds: aNumber
  468. ^self new: aNumber
  469. !
  470. fromSeconds: aNumber
  471. ^self fromMilliseconds: aNumber * 1000
  472. !
  473. fromString: aString
  474. "Example: Date fromString('2011/04/15 00:00:00')"
  475. ^self new: aString
  476. !
  477. millisecondsToRun: aBlock
  478. | t |
  479. t := Date now.
  480. aBlock value.
  481. ^Date now - t
  482. !
  483. new: anObject
  484. <return new Date(anObject)>
  485. !
  486. now
  487. ^self today
  488. !
  489. today
  490. ^self new
  491. ! !
  492. Object subclass: #JSObjectProxy
  493. instanceVariableNames: 'jsObject'
  494. package: 'Kernel-Objects'!
  495. !JSObjectProxy commentStamp!
  496. JSObjectProxy handles sending messages to JavaScript object, therefore accessing JavaScript objects from Amber is transparent.
  497. JSOjbectProxy makes intensive use of `#doesNotUnderstand:`.
  498. ## Examples
  499. JSObjectProxy objects are instanciated by Amber when a Smalltalk message is sent to a JavaScript object.
  500. window alert: 'hello world'.
  501. window inspect.
  502. (window jQuery: 'body') append: 'hello world'
  503. Smalltalk messages sends are converted to JavaScript function calls or object property access _(in this order)_. If n one of them match, a `MessageNotUnderstood` error will be thrown.
  504. ## Message conversion rules
  505. - `someUser name` becomes `someUser.name`
  506. - `someUser name: 'John'` becomes `someUser name = "John"`
  507. - `console log: 'hello world'` becomes `console.log('hello world')`
  508. - `(window jQuery: 'foo') css: 'background' color: 'red'` becomes `window.jQuery('foo').css('background', 'red')`
  509. __Note:__ For keyword-based messages, only the first keyword is kept: `window foo: 1 bar: 2` is equivalent to `window foo: 1 baz: 2`.!
  510. !JSObjectProxy methodsFor: 'accessing'!
  511. at: aString
  512. <return self['@jsObject'][aString]>
  513. !
  514. at: aString ifAbsent: aBlock
  515. "return the aString property or evaluate aBlock if the property is not defined on the object"
  516. <
  517. var obj = self['@jsObject'];
  518. return aString in obj ? obj[aString] : aBlock();
  519. >
  520. !
  521. at: aString ifPresent: aBlock
  522. "return the evaluation of aBlock with the value if the property is defined or return nil"
  523. <
  524. var obj = self['@jsObject'];
  525. return aString in obj ? aBlock(obj[aString]) : nil;
  526. >
  527. !
  528. at: aString ifPresent: aBlock ifAbsent: anotherBlock
  529. "return the evaluation of aBlock with the value if the property is defined
  530. or return value of anotherBlock"
  531. <
  532. var obj = self['@jsObject'];
  533. return aString in obj ? aBlock(obj[aString]) : anotherBlock();
  534. >
  535. !
  536. at: aString put: anObject
  537. <self['@jsObject'][aString] = anObject>
  538. !
  539. jsObject
  540. ^jsObject
  541. !
  542. jsObject: aJSObject
  543. jsObject := aJSObject
  544. !
  545. value
  546. "if attribute 'value' exists on the JS object return it,
  547. otherwise return the result of Object>>value."
  548. ^ self
  549. at: 'value'
  550. ifAbsent: [ super value ]
  551. ! !
  552. !JSObjectProxy methodsFor: 'enumerating'!
  553. keysAndValuesDo: aBlock
  554. <
  555. var o = self['@jsObject'];
  556. for(var i in o) {
  557. aBlock(i, o[i]);
  558. }
  559. >
  560. ! !
  561. !JSObjectProxy methodsFor: 'printing'!
  562. printOn: aStream
  563. aStream nextPutAll: self jsObject toString
  564. ! !
  565. !JSObjectProxy methodsFor: 'proxy'!
  566. addObjectVariablesTo: aDictionary
  567. <
  568. for(var i in self['@jsObject']) {
  569. aDictionary._at_put_(i, self['@jsObject'][i]);
  570. }
  571. >
  572. !
  573. doesNotUnderstand: aMessage
  574. ^ (self canForwardMessage: aMessage)
  575. ifTrue: [ self forwardMessage: aMessage ]
  576. ifFalse: [ ^ super doesNotUnderstand: aMessage ]
  577. !
  578. forwardMessage: aMessage
  579. <
  580. return smalltalk.send(self._jsObject(), aMessage._selector()._asJavaScriptSelector(), aMessage._arguments());
  581. >
  582. !
  583. inspectOn: anInspector
  584. | variables |
  585. variables := Dictionary new.
  586. variables at: '#self' put: self jsObject.
  587. anInspector setLabel: self printString.
  588. self addObjectVariablesTo: variables.
  589. anInspector setVariables: variables
  590. ! !
  591. !JSObjectProxy methodsFor: 'testing'!
  592. canForwardMessage: aMessage
  593. <
  594. var jsSelector = aMessage._selector()._asJavaScriptSelector();
  595. if(jsSelector in self._jsObject()) {
  596. return true
  597. } else {
  598. return false;
  599. }
  600. >
  601. ! !
  602. !JSObjectProxy class methodsFor: 'instance creation'!
  603. on: aJSObject
  604. ^self new
  605. jsObject: aJSObject;
  606. yourself
  607. ! !
  608. Object subclass: #Number
  609. instanceVariableNames: ''
  610. package: 'Kernel-Objects'!
  611. !Number commentStamp!
  612. Number holds the most general methods for dealing with numbers.
  613. Number is directly mapped to JavaScript Number.
  614. Most arithmetic methods like `#+` `#/` `#-` `#max:` are directly inlined into javascript.
  615. ##Enumerating
  616. A Number can be used to evaluate a Block a fixed number of times:
  617. 5 timesRepeat: [Transcript show: 'This will be printed 5 times'; cr].
  618. 1 to: 5 do: [:aNumber| Transcript show: aNumber asString; cr].
  619. 1 to: 10 by: 2 do: [:aNumber| Transcript show: aNumber asString; cr].!
  620. !Number methodsFor: 'accessing'!
  621. identityHash
  622. ^self asString, 'n'
  623. ! !
  624. !Number methodsFor: 'arithmetic'!
  625. * aNumber
  626. "Inlined in the Compiler"
  627. <return self * aNumber>
  628. !
  629. + aNumber
  630. "Inlined in the Compiler"
  631. <return self + aNumber>
  632. !
  633. - aNumber
  634. "Inlined in the Compiler"
  635. <return self - aNumber>
  636. !
  637. / aNumber
  638. "Inlined in the Compiler"
  639. <return self / aNumber>
  640. !
  641. \\ aNumber
  642. <return self % aNumber>
  643. !
  644. abs
  645. <return Math.abs(self);>
  646. !
  647. max: aNumber
  648. <return Math.max(self, aNumber);>
  649. !
  650. min: aNumber
  651. <return Math.min(self, aNumber);>
  652. !
  653. negated
  654. ^0 - self
  655. !
  656. sqrt
  657. <return Math.sqrt(self)>
  658. !
  659. squared
  660. ^self * self
  661. ! !
  662. !Number methodsFor: 'comparing'!
  663. < aNumber
  664. "Inlined in the Compiler"
  665. <return self < aNumber>
  666. !
  667. <= aNumber
  668. "Inlined in the Compiler"
  669. <return self <= aNumber>
  670. !
  671. = aNumber
  672. <
  673. if(!! aNumber._isNumber || !! aNumber._isNumber()) {
  674. return false;
  675. }
  676. return Number(self) == aNumber
  677. >
  678. !
  679. > aNumber
  680. "Inlined in the Compiler"
  681. <return self >> aNumber>
  682. !
  683. >= aNumber
  684. "Inlined in the Compiler"
  685. <return self >>= aNumber>
  686. ! !
  687. !Number methodsFor: 'converting'!
  688. & aNumber
  689. <return self & aNumber>
  690. !
  691. @ aNumber
  692. ^Point x: self y: aNumber
  693. !
  694. asJSON
  695. ^self
  696. !
  697. asJavascript
  698. ^'(', self printString, ')'
  699. !
  700. asPoint
  701. ^Point x: self y: self
  702. !
  703. asString
  704. < return String(self) >
  705. !
  706. atRandom
  707. ^(Random new next * self) truncated + 1
  708. !
  709. rounded
  710. <return Math.round(self);>
  711. !
  712. to: aNumber
  713. | array first last count |
  714. first := self truncated.
  715. last := aNumber truncated + 1.
  716. count := 1.
  717. array := Array new.
  718. (last - first) timesRepeat: [
  719. array at: count put: first.
  720. count := count + 1.
  721. first := first + 1].
  722. ^array
  723. !
  724. to: stop by: step
  725. | array value pos |
  726. value := self.
  727. array := Array new.
  728. pos := 1.
  729. step = 0 ifTrue: [self error: 'step must be non-zero'].
  730. step < 0
  731. ifTrue: [[ value >= stop ] whileTrue: [
  732. array at: pos put: value.
  733. pos := pos + 1.
  734. value := value + step]]
  735. ifFalse: [[ value <= stop ] whileTrue: [
  736. array at: pos put: value.
  737. pos := pos + 1.
  738. value := value + step]].
  739. ^array
  740. !
  741. truncated
  742. <
  743. if(self >>= 0) {
  744. return Math.floor(self);
  745. } else {
  746. return Math.floor(self * (-1)) * (-1);
  747. };
  748. >
  749. !
  750. | aNumber
  751. <return self | aNumber>
  752. ! !
  753. !Number methodsFor: 'copying'!
  754. copy
  755. ^self
  756. !
  757. deepCopy
  758. ^self copy
  759. ! !
  760. !Number methodsFor: 'enumerating'!
  761. timesRepeat: aBlock
  762. | count |
  763. count := 1.
  764. [count > self] whileFalse: [
  765. aBlock value.
  766. count := count + 1]
  767. !
  768. to: stop by: step do: aBlock
  769. | value |
  770. value := self.
  771. step = 0 ifTrue: [self error: 'step must be non-zero'].
  772. step < 0
  773. ifTrue: [[ value >= stop ] whileTrue: [
  774. aBlock value: value.
  775. value := value + step]]
  776. ifFalse: [[ value <= stop ] whileTrue: [
  777. aBlock value: value.
  778. value := value + step]]
  779. !
  780. to: stop do: aBlock
  781. "Evaluate aBlock for each number from self to aNumber."
  782. | nextValue |
  783. nextValue := self.
  784. [nextValue <= stop]
  785. whileTrue:
  786. [aBlock value: nextValue.
  787. nextValue := nextValue + 1]
  788. ! !
  789. !Number methodsFor: 'printing'!
  790. printOn: aStream
  791. aStream nextPutAll: self asString
  792. !
  793. printShowingDecimalPlaces: placesDesired
  794. <return self.toFixed(placesDesired)>
  795. ! !
  796. !Number methodsFor: 'testing'!
  797. IsImmutable
  798. ^ true
  799. !
  800. even
  801. ^ 0 = (self \\ 2)
  802. !
  803. isNumber
  804. ^true
  805. !
  806. isZero
  807. ^self = 0
  808. !
  809. negative
  810. "Answer whether the receiver is mathematically negative."
  811. ^ self < 0
  812. !
  813. odd
  814. ^ self even not
  815. !
  816. positive
  817. "Answer whether the receiver is positive or equal to 0. (ST-80 protocol)."
  818. ^ self >= 0
  819. ! !
  820. !Number class methodsFor: 'instance creation'!
  821. pi
  822. <return Math.PI>
  823. ! !
  824. Object subclass: #Organizer
  825. instanceVariableNames: ''
  826. package: 'Kernel-Objects'!
  827. !Organizer methodsFor: 'accessing'!
  828. addElement: anObject
  829. <self.elements.addElement(anObject)>
  830. !
  831. elements
  832. ^ (self basicAt: 'elements') copy
  833. !
  834. removeElement: anObject
  835. <self.elements.removeElement(anObject)>
  836. ! !
  837. Organizer subclass: #ClassOrganizer
  838. instanceVariableNames: ''
  839. package: 'Kernel-Objects'!
  840. !ClassOrganizer methodsFor: 'accessing'!
  841. addElement: aString
  842. super addElement: aString.
  843. SystemAnnouncer current announce: (ProtocolAdded new
  844. protocol: aString;
  845. theClass: self theClass;
  846. yourself)
  847. !
  848. removeElement: aString
  849. super removeElement: aString.
  850. SystemAnnouncer current announce: (ProtocolRemoved new
  851. protocol: aString;
  852. theClass: self theClass;
  853. yourself)
  854. !
  855. theClass
  856. < return self.theClass >
  857. ! !
  858. Organizer subclass: #PackageOrganizer
  859. instanceVariableNames: ''
  860. package: 'Kernel-Objects'!
  861. Object subclass: #Package
  862. instanceVariableNames: 'commitPathJs commitPathSt'
  863. package: 'Kernel-Objects'!
  864. !Package commentStamp!
  865. 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.
  866. 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.
  867. Packages are manipulated through "Smalltalk current", like for example finding one based on a name:
  868. Smalltalk current packageAt: 'Kernel'
  869. ...but you can also use:
  870. Package named: 'Kernel'
  871. 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
  872. 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
  873. String where the method category "*IDE" defines #inspectOn: which thus is a method belonging to the IDE package.
  874. You can fetch a package from the server:
  875. Package fetch: 'Additional-Examples'!
  876. !Package methodsFor: 'accessing'!
  877. commitPathJs
  878. ^ commitPathJs ifNil: [self class defaultCommitPathJs]
  879. !
  880. commitPathJs: aString
  881. commitPathJs := aString
  882. !
  883. commitPathSt
  884. ^ commitPathSt ifNil: [self class defaultCommitPathSt]
  885. !
  886. commitPathSt: aString
  887. commitPathSt := aString
  888. !
  889. name
  890. <return self.pkgName>
  891. !
  892. name: aString
  893. <self.pkgName = aString>
  894. !
  895. organization
  896. ^ self basicAt: 'organization'
  897. ! !
  898. !Package methodsFor: 'classes'!
  899. classes
  900. ^ self organization elements
  901. !
  902. setupClasses
  903. self classes
  904. do: [ :each | ClassBuilder new setupClass: each ];
  905. do: [ :each | each initialize ]
  906. !
  907. sortedClasses
  908. "Answer all classes in the receiver, sorted by superclass/subclasses and by class name for common subclasses (Issue #143)."
  909. ^self class sortedClasses: self classes
  910. ! !
  911. !Package methodsFor: 'printing'!
  912. printOn: aStream
  913. super printOn: aStream.
  914. aStream
  915. nextPutAll: ' (';
  916. nextPutAll: self name;
  917. nextPutAll: ')'
  918. ! !
  919. Package class instanceVariableNames: 'defaultCommitPathJs defaultCommitPathSt'!
  920. !Package class methodsFor: 'accessing'!
  921. named: aPackageName
  922. ^Smalltalk current packageAt: aPackageName
  923. !
  924. named: aPackageName ifAbsent: aBlock
  925. ^Smalltalk current packageAt: aPackageName ifAbsent: aBlock
  926. ! !
  927. !Package class methodsFor: 'commit paths'!
  928. commitPathsFromLoader
  929. <
  930. var commitPath = typeof amber !!== 'undefined' && amber.commitPath;
  931. if (!!commitPath) return;
  932. if (commitPath.js) self._defaultCommitPathJs_(commitPath.js);
  933. if (commitPath.st) self._defaultCommitPathSt_(commitPath.st);
  934. >
  935. !
  936. defaultCommitPathJs
  937. ^ defaultCommitPathJs ifNil: [ defaultCommitPathJs := 'js']
  938. !
  939. defaultCommitPathJs: aString
  940. defaultCommitPathJs := aString
  941. !
  942. defaultCommitPathSt
  943. ^ defaultCommitPathSt ifNil: [ defaultCommitPathSt := 'st']
  944. !
  945. defaultCommitPathSt: aString
  946. defaultCommitPathSt := aString
  947. !
  948. resetCommitPaths
  949. defaultCommitPathJs := nil.
  950. defaultCommitPathSt := nil.
  951. ! !
  952. !Package class methodsFor: 'initialization'!
  953. initialize
  954. super initialize.
  955. self commitPathsFromLoader
  956. ! !
  957. !Package class methodsFor: 'loading-storing'!
  958. load: aPackageName
  959. self load: aPackageName prefix: self defaultCommitPathJs, '/'
  960. !
  961. load: aPackageName prefix: aPrefix
  962. jQuery
  963. getScript: (aPrefix , aPackageName , '.js')
  964. onSuccess: [
  965. (Package named: aPackageName) setupClasses ]
  966. ! !
  967. !Package class methodsFor: 'sorting'!
  968. sortedClasses: classes
  969. "Answer classes, sorted by superclass/subclasses and by class name for common subclasses (Issue #143)"
  970. | children others nodes expandedClasses |
  971. children := #().
  972. others := #().
  973. classes do: [:each |
  974. (classes includes: each superclass)
  975. ifFalse: [children add: each]
  976. ifTrue: [others add: each]].
  977. nodes := children collect: [:each |
  978. ClassSorterNode on: each classes: others level: 0].
  979. nodes := nodes sorted: [:a :b | a theClass name <= b theClass name ].
  980. expandedClasses := Array new.
  981. nodes do: [:aNode |
  982. aNode traverseClassesWith: expandedClasses].
  983. ^expandedClasses
  984. ! !
  985. Object subclass: #Point
  986. instanceVariableNames: 'x y'
  987. package: 'Kernel-Objects'!
  988. !Point commentStamp!
  989. A `Point` represents an x-y pair of numbers usually designating a geometric coordinate.
  990. Points are traditionally created using the binary `#@` message to a number:
  991. 100@120
  992. Points can then be arithmetically manipulated:
  993. 100@100 + (10@10)
  994. ...or for example:
  995. (100@100) * 2
  996. **NOTE:** Creating a Point with a negative y-value will need a space after `@` in order to avoid a parsing error:
  997. 100@ -100 "but 100@-100 would not parse"
  998. Amber does not have much behavior in this class out-of-the-box.!
  999. !Point methodsFor: 'accessing'!
  1000. x
  1001. ^x
  1002. !
  1003. x: aNumber
  1004. x := aNumber
  1005. !
  1006. y
  1007. ^y
  1008. !
  1009. y: aNumber
  1010. y := aNumber
  1011. ! !
  1012. !Point methodsFor: 'arithmetic'!
  1013. * aPoint
  1014. ^Point x: self x * aPoint asPoint x y: self y * aPoint asPoint y
  1015. !
  1016. + aPoint
  1017. ^Point x: self x + aPoint asPoint x y: self y + aPoint asPoint y
  1018. !
  1019. - aPoint
  1020. ^Point x: self x - aPoint asPoint x y: self y - aPoint asPoint y
  1021. !
  1022. / aPoint
  1023. ^Point x: self x / aPoint asPoint x y: self y / aPoint asPoint y
  1024. !
  1025. = aPoint
  1026. ^aPoint class = self class and: [
  1027. (aPoint x = self x) & (aPoint y = self y)]
  1028. ! !
  1029. !Point methodsFor: 'converting'!
  1030. asPoint
  1031. ^self
  1032. ! !
  1033. !Point methodsFor: 'printing'!
  1034. printOn: aStream
  1035. "Print receiver in classic x@y notation."
  1036. x printOn: aStream.
  1037. aStream nextPutAll: '@'.
  1038. (y notNil and: [y negative]) ifTrue: [
  1039. "Avoid ambiguous @- construct"
  1040. aStream space ].
  1041. y printOn: aStream
  1042. ! !
  1043. !Point methodsFor: 'transforming'!
  1044. translateBy: delta
  1045. "Answer a Point translated by delta (an instance of Point)."
  1046. ^(delta x + x) @ (delta y + y)
  1047. ! !
  1048. !Point class methodsFor: 'instance creation'!
  1049. x: aNumber y: anotherNumber
  1050. ^self new
  1051. x: aNumber;
  1052. y: anotherNumber;
  1053. yourself
  1054. ! !
  1055. Object subclass: #Random
  1056. instanceVariableNames: ''
  1057. package: 'Kernel-Objects'!
  1058. !Random commentStamp!
  1059. `Random` is a random number generator and is implemented as a trivial wrapper around javascript `Math.random()` and is used like this:
  1060. Random new next
  1061. This will return a float x where x < 1 and x > 0. If you want a random integer from 1 to 10 you can use `#atRandom`
  1062. 10 atRandom
  1063. ...and if you want a random number in a specific interval this also works:
  1064. (3 to: 7) atRandom
  1065. ...but be aware that `#to:` does not create an Interval as in other Smalltalk implementations but in fact an `Array` of numbers, so it's better to use:
  1066. 5 atRandom + 2
  1067. Since `#atRandom` is implemented in `SequencableCollection` you can easy pick an element at random:
  1068. #('a' 'b' 'c') atRandom
  1069. ...or perhaps a letter from a `String`:
  1070. 'abc' atRandom
  1071. Since Amber does not have Characters this will return a `String` of length 1 like for example `'b'`.!
  1072. !Random methodsFor: 'accessing'!
  1073. next
  1074. <return Math.random()>
  1075. !
  1076. next: anInteger
  1077. ^(1 to: anInteger) collect: [:each | self next]
  1078. ! !
  1079. Object subclass: #Smalltalk
  1080. instanceVariableNames: ''
  1081. package: 'Kernel-Objects'!
  1082. !Smalltalk commentStamp!
  1083. Smalltalk has only one instance, accessed with `Smalltalk current`.
  1084. It represents the global JavaScript variable `smalltalk` declared in `js/boot.js`.
  1085. The `smalltalk` object holds all class and packages defined in the system.
  1086. ## Classes
  1087. Classes can be accessed using the following methods:
  1088. - `#classes` answers the full list of Smalltalk classes in the system
  1089. - `#at:` answers a specific class of `nil`
  1090. ## Packages
  1091. Packages can be accessed using the following methods:
  1092. - `#packages` answers the full list of packages
  1093. - `#packageAt:` answers a specific class of `nil`
  1094. __note:__ classes and packages are accessed using strings, not symbols
  1095. ## Parsing
  1096. The `#parse:` method is used to parse Smalltalk source code.
  1097. It requires the `Compiler` package and the `js/parser.js` parser file in order to work!
  1098. !Smalltalk methodsFor: 'accessing'!
  1099. at: aString
  1100. <return self[aString]>
  1101. !
  1102. parse: aString
  1103. | result |
  1104. self try: [result := self basicParse: aString] catch: [:ex | (self parseError: ex parsing: aString) signal].
  1105. ^result
  1106. !
  1107. readJSObject: anObject
  1108. <return self.readJSObject(anObject)>
  1109. !
  1110. reservedWords
  1111. "JavaScript reserved words"
  1112. <return self.reservedWords>
  1113. !
  1114. version
  1115. "Answer the version string of Amber"
  1116. ^ '0.10'
  1117. ! !
  1118. !Smalltalk methodsFor: 'classes'!
  1119. classes
  1120. <return self.classes()>
  1121. !
  1122. deleteClass: aClass
  1123. "Deletes a class by deleting its binding only. Use #removeClass instead"
  1124. <self.removeClass(aClass)>
  1125. !
  1126. removeClass: aClass
  1127. aClass isMetaclass ifTrue: [self error: aClass asString, ' is a Metaclass and cannot be removed!!'].
  1128. self deleteClass: aClass.
  1129. SystemAnnouncer current
  1130. announce: (ClassRemoved new
  1131. theClass: aClass;
  1132. yourself)
  1133. ! !
  1134. !Smalltalk methodsFor: 'error handling'!
  1135. asSmalltalkException: anObject
  1136. "A JavaScript exception may be thrown.
  1137. We then need to convert it back to a Smalltalk object"
  1138. ^ ((self isSmalltalkObject: anObject) and: [ anObject isKindOf: Error ])
  1139. ifTrue: [ anObject ]
  1140. ifFalse: [ JavaScriptException on: anObject ]
  1141. !
  1142. parseError: anException parsing: aString
  1143. ^ ParseError new messageText: 'Parse error on line ', (anException basicAt: 'line') ,' column ' , (anException basicAt: 'column') ,' : Unexpected character ', (anException basicAt: 'found')
  1144. ! !
  1145. !Smalltalk methodsFor: 'packages'!
  1146. createPackage: packageName
  1147. "Create and bind a new package with given name and return it."
  1148. <return smalltalk.addPackage(packageName)>
  1149. !
  1150. deletePackage: packageName
  1151. "Deletes a package by deleting its binding, but does not check if it contains classes etc.
  1152. To remove a package, use #removePackage instead."
  1153. <delete smalltalk.packages[packageName]>
  1154. !
  1155. packageAt: packageName
  1156. <return self.packages[packageName]>
  1157. !
  1158. packageAt: packageName ifAbsent: aBlock
  1159. ^(self packageAt: packageName) ifNil: aBlock
  1160. !
  1161. packages
  1162. "Return all Package instances in the system."
  1163. <return self.packages.all()>
  1164. !
  1165. pseudoVariableNames
  1166. ^ #('self' 'super' 'nil' 'true' 'false' 'thisContext')
  1167. !
  1168. removePackage: packageName
  1169. "Removes a package and all its classes."
  1170. | pkg |
  1171. pkg := self packageAt: packageName ifAbsent: [self error: 'Missing package: ', packageName].
  1172. pkg classes do: [:each |
  1173. self removeClass: each].
  1174. self deletePackage: packageName
  1175. !
  1176. renamePackage: packageName to: newName
  1177. "Rename a package."
  1178. | pkg |
  1179. pkg := self packageAt: packageName ifAbsent: [self error: 'Missing package: ', packageName].
  1180. (self packageAt: newName) ifNotNil: [self error: 'Already exists a package called: ', newName].
  1181. (self basicAt: 'packages') at: newName put: pkg.
  1182. pkg name: newName.
  1183. self deletePackage: packageName.
  1184. ! !
  1185. !Smalltalk methodsFor: 'private'!
  1186. basicParse: aString
  1187. <return smalltalk.parser.parse(aString)>
  1188. !
  1189. createPackage: packageName properties: aDict
  1190. "Needed to import .st files: they begin with this call."
  1191. self deprecatedAPI.
  1192. aDict isEmpty ifFalse: [ self error: 'createPackage:properties: called with nonempty properties' ].
  1193. ^ self createPackage: packageName
  1194. ! !
  1195. !Smalltalk methodsFor: 'testing'!
  1196. isSmalltalkObject: anObject
  1197. "Consider anObject a Smalltalk object if it has a 'klass' property.
  1198. Note that this may be unaccurate"
  1199. <return typeof anObject.klass !!== 'undefined'>
  1200. ! !
  1201. Smalltalk class instanceVariableNames: 'current'!
  1202. !Smalltalk class methodsFor: 'accessing'!
  1203. current
  1204. <return smalltalk>
  1205. ! !
  1206. Object subclass: #Timeout
  1207. instanceVariableNames: 'rawTimeout'
  1208. package: 'Kernel-Objects'!
  1209. !Timeout commentStamp!
  1210. I am wrapping the returns from set{Timeout,Interval}.
  1211. Number suffices in browsers, but node.js returns an object.!
  1212. !Timeout methodsFor: 'accessing'!
  1213. rawTimeout: anObject
  1214. rawTimeout := anObject
  1215. ! !
  1216. !Timeout methodsFor: 'timeout/interval'!
  1217. clearInterval
  1218. <
  1219. var interval = self["@rawTimeout"];
  1220. clearInterval(interval);
  1221. >
  1222. !
  1223. clearTimeout
  1224. <
  1225. var timeout = self["@rawTimeout"];
  1226. clearTimeout(timeout);
  1227. >
  1228. ! !
  1229. !Timeout class methodsFor: 'instance creation'!
  1230. on: anObject
  1231. ^self new rawTimeout: anObject; yourself
  1232. ! !
  1233. Object subclass: #UndefinedObject
  1234. instanceVariableNames: ''
  1235. package: 'Kernel-Objects'!
  1236. !UndefinedObject commentStamp!
  1237. UndefinedObject describes the behavior of its sole instance, `nil`. `nil` represents a prior value for variables that have not been initialized, or for results which are meaningless.
  1238. `nil` is the Smalltalk representation of the `undefined` JavaScript object.!
  1239. !UndefinedObject methodsFor: 'class creation'!
  1240. subclass: aString instanceVariableNames: anotherString
  1241. ^self subclass: aString instanceVariableNames: anotherString package: nil
  1242. !
  1243. subclass: aString instanceVariableNames: aString2 category: aString3
  1244. "Kept for compatibility."
  1245. self deprecatedAPI.
  1246. ^self subclass: aString instanceVariableNames: aString2 package: aString3
  1247. !
  1248. subclass: aString instanceVariableNames: aString2 package: aString3
  1249. ^ClassBuilder new
  1250. superclass: self subclass: aString asString instanceVariableNames: aString2 package: aString3
  1251. ! !
  1252. !UndefinedObject methodsFor: 'converting'!
  1253. asJSON
  1254. ^null
  1255. ! !
  1256. !UndefinedObject methodsFor: 'copying'!
  1257. deepCopy
  1258. ^self
  1259. !
  1260. shallowCopy
  1261. ^self
  1262. ! !
  1263. !UndefinedObject methodsFor: 'printing'!
  1264. printOn: aStream
  1265. aStream nextPutAll: 'nil'
  1266. ! !
  1267. !UndefinedObject methodsFor: 'testing'!
  1268. ifNil: aBlock
  1269. "inlined in the Compiler"
  1270. ^self ifNil: aBlock ifNotNil: []
  1271. !
  1272. ifNil: aBlock ifNotNil: anotherBlock
  1273. "inlined in the Compiler"
  1274. ^aBlock value
  1275. !
  1276. ifNotNil: aBlock
  1277. "inlined in the Compiler"
  1278. ^self
  1279. !
  1280. ifNotNil: aBlock ifNil: anotherBlock
  1281. "inlined in the Compiler"
  1282. ^anotherBlock value
  1283. !
  1284. isImmutable
  1285. ^ true
  1286. !
  1287. isNil
  1288. ^true
  1289. !
  1290. notNil
  1291. ^false
  1292. ! !
  1293. !UndefinedObject class methodsFor: 'instance creation'!
  1294. new
  1295. self error: 'You cannot create new instances of UndefinedObject. Use nil'
  1296. ! !