Kernel-Objects.st 32 KB

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