Kernel-Objects.st 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389
  1. Smalltalk createPackage: 'Kernel-Objects'!
  2. nil subclass: #ProtoObject
  3. instanceVariableNames: ''
  4. package: 'Kernel-Objects'!
  5. !ProtoObject commentStamp!
  6. I implement the basic behavior required for any object in Amber.
  7. In most cases, subclassing `ProtoObject` is wrong and `Object` should be used instead. However subclassing `ProtoObject` can be useful in some special cases like proxy implementations.!
  8. !ProtoObject methodsFor: 'accessing'!
  9. class
  10. <return self.klass>
  11. !
  12. identityHash
  13. <
  14. var hash=self.identityHash;
  15. if (hash) return hash;
  16. hash=$vm.nextId();
  17. Object.defineProperty(self, 'identityHash', {value:hash});
  18. return hash;
  19. >
  20. !
  21. instVarAt: aString
  22. < return self['@'+aString] >
  23. !
  24. instVarAt: aString put: anObject
  25. < self['@' + aString] = anObject >
  26. !
  27. yourself
  28. ^ self
  29. ! !
  30. !ProtoObject methodsFor: 'comparing'!
  31. = anObject
  32. ^ self == anObject
  33. !
  34. == anObject
  35. ^ self identityHash = anObject identityHash
  36. !
  37. ~= anObject
  38. ^ (self = anObject) = false
  39. !
  40. ~~ anObject
  41. ^ (self == anObject) = false
  42. ! !
  43. !ProtoObject methodsFor: 'converting'!
  44. asString
  45. ^ self printString
  46. ! !
  47. !ProtoObject methodsFor: 'error handling'!
  48. doesNotUnderstand: aMessage
  49. MessageNotUnderstood new
  50. receiver: self;
  51. message: aMessage;
  52. signal
  53. ! !
  54. !ProtoObject methodsFor: 'evaluating'!
  55. evaluate: aString on: anEvaluator
  56. ^ anEvaluator evaluate: aString receiver: self
  57. ! !
  58. !ProtoObject methodsFor: 'initialization'!
  59. initialize
  60. ! !
  61. !ProtoObject methodsFor: 'inspecting'!
  62. inspect
  63. Inspector inspect: self
  64. !
  65. inspectOn: anInspector
  66. ! !
  67. !ProtoObject methodsFor: 'message handling'!
  68. perform: aString
  69. ^ self perform: aString withArguments: #()
  70. !
  71. perform: aString withArguments: aCollection
  72. <return $vm.send(self, aString._asJavaScriptMethodName(), aCollection)>
  73. ! !
  74. !ProtoObject methodsFor: 'printing'!
  75. printOn: aStream
  76. aStream nextPutAll: (self class name first isVowel
  77. ifTrue: [ 'an ' ]
  78. ifFalse: [ 'a ' ]).
  79. aStream nextPutAll: self class name
  80. !
  81. printString
  82. ^ String streamContents: [ :str |
  83. self printOn: str ]
  84. ! !
  85. !ProtoObject methodsFor: 'testing'!
  86. isKindOf: aClass
  87. ^ (self isMemberOf: aClass)
  88. ifTrue: [ true ]
  89. ifFalse: [ self class inheritsFrom: aClass ]
  90. ! !
  91. !ProtoObject class methodsFor: 'initialization'!
  92. initialize
  93. ! !
  94. ProtoObject subclass: #Object
  95. instanceVariableNames: ''
  96. package: 'Kernel-Objects'!
  97. !Object commentStamp!
  98. **I am the root of the Smalltalk class system**. With the exception of unual subclasses of `ProtoObject`, all other classes in the system are subclasses of me.
  99. I provide default behavior common to all normal objects (some of it inherited from `ProtoObject`), such as:
  100. - accessing
  101. - copying
  102. - comparison
  103. - error handling
  104. - message sending
  105. - reflection
  106. Also utility messages that all objects should respond to are defined here.
  107. I have no instance variable.
  108. ##Access
  109. Instance variables can be accessed with `#instVarAt:` and `#instVarAt:put:`. `#instanceVariableNames` answers a collection of all instance variable names.
  110. Accessing JavaScript properties of an object is done through `#basicAt:`, `#basicAt:put:` and `basicDelete:`.
  111. ##Copying
  112. 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.
  113. 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.
  114. ##Comparison
  115. I understand equality `#=` and identity `#==` comparison.
  116. ##Error handling
  117. - `#halt` is the typical message to use for inserting breakpoints during debugging.
  118. - `#error:` throws a generic error exception
  119. - `#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.
  120. Overriding this message can be useful to implement proxies for example.!
  121. !Object methodsFor: 'accessing'!
  122. basicAt: aString
  123. <return self[aString]>
  124. !
  125. basicAt: aString put: anObject
  126. <return self[aString] = anObject>
  127. !
  128. basicDelete: aString
  129. <delete self[aString]; return aString>
  130. !
  131. size
  132. self error: 'Object not indexable'
  133. !
  134. value
  135. <return self.valueOf()>
  136. ! !
  137. !Object methodsFor: 'browsing'!
  138. browse
  139. Finder findClass: self class
  140. ! !
  141. !Object methodsFor: 'converting'!
  142. -> anObject
  143. ^ Association key: self value: anObject
  144. !
  145. asJSON
  146. | variables |
  147. variables := HashedCollection new.
  148. self class allInstanceVariableNames do: [ :each |
  149. variables at: each put: (self instVarAt: each) asJSON ].
  150. ^ variables
  151. !
  152. asJSONString
  153. ^ JSON stringify: self asJSON
  154. !
  155. asJavascript
  156. ^ self asString
  157. ! !
  158. !Object methodsFor: 'copying'!
  159. copy
  160. ^ self shallowCopy postCopy
  161. !
  162. deepCopy
  163. <
  164. var copy = self.klass._new();
  165. Object.keys(self).forEach(function (i) {
  166. if(/^@.+/.test(i)) {
  167. copy[i] = self[i]._deepCopy();
  168. }
  169. });
  170. return copy;
  171. >
  172. !
  173. postCopy
  174. !
  175. shallowCopy
  176. <
  177. var copy = self.klass._new();
  178. Object.keys(self).forEach(function(i) {
  179. if(/^@.+/.test(i)) {
  180. copy[i] = self[i];
  181. }
  182. });
  183. return copy;
  184. >
  185. ! !
  186. !Object methodsFor: 'error handling'!
  187. deprecatedAPI
  188. "Just a simple way to deprecate methods.
  189. #deprecatedAPI is in the 'error handling' protocol even if it doesn't throw an error,
  190. but it could in the future."
  191. console warn: thisContext home asString, ' is deprecated!! (in ', thisContext home home asString, ')'.
  192. !
  193. deprecatedAPI: aString
  194. "Just a simple way to deprecate methods.
  195. #deprecatedAPI is in the 'error handling' protocol even if it doesn't throw an error,
  196. but it could in the future."
  197. console warn: thisContext home asString, ' is deprecated!! (in ', thisContext home home asString, ')'.
  198. console warn: aString
  199. !
  200. error: aString
  201. Error signal: aString
  202. !
  203. halt
  204. Halt signal
  205. !
  206. shouldNotImplement
  207. self error: 'This method should not be implemented in ', self class name
  208. !
  209. subclassResponsibility
  210. self error: 'This method is a responsibility of a subclass'
  211. !
  212. throw: anObject
  213. < throw anObject >
  214. !
  215. try: aBlock catch: anotherBlock
  216. self deprecatedAPI.
  217. ^ aBlock tryCatch: anotherBlock
  218. ! !
  219. !Object methodsFor: 'inspecting'!
  220. inspectOn: anInspector
  221. | variables |
  222. variables := Dictionary new.
  223. variables at: '#self' put: self.
  224. self class allInstanceVariableNames do: [ :each |
  225. variables at: each put: (self instVarAt: each) ].
  226. anInspector
  227. setLabel: self printString;
  228. setVariables: variables
  229. ! !
  230. !Object methodsFor: 'message handling'!
  231. basicPerform: aString
  232. ^ self basicPerform: aString withArguments: #()
  233. !
  234. basicPerform: aString withArguments: aCollection
  235. <return self[aString].apply(self, aCollection);>
  236. ! !
  237. !Object methodsFor: 'streaming'!
  238. putOn: aStream
  239. aStream nextPut: self
  240. ! !
  241. !Object methodsFor: 'testing'!
  242. ifNil: aBlock
  243. "inlined in the Compiler"
  244. ^ self
  245. !
  246. ifNil: aBlock ifNotNil: anotherBlock
  247. "inlined in the Compiler"
  248. ^ anotherBlock value: self
  249. !
  250. ifNotNil: aBlock
  251. "inlined in the Compiler"
  252. ^ aBlock value: self
  253. !
  254. ifNotNil: aBlock ifNil: anotherBlock
  255. "inlined in the Compiler"
  256. ^ aBlock value: self
  257. !
  258. isBehavior
  259. ^ false
  260. !
  261. isBoolean
  262. ^ false
  263. !
  264. isClass
  265. ^ false
  266. !
  267. isCompiledMethod
  268. ^ false
  269. !
  270. isImmutable
  271. ^ false
  272. !
  273. isMemberOf: aClass
  274. ^ self class = aClass
  275. !
  276. isMetaclass
  277. ^ false
  278. !
  279. isNil
  280. ^ false
  281. !
  282. isNumber
  283. ^ false
  284. !
  285. isPackage
  286. ^ false
  287. !
  288. isParseFailure
  289. ^ false
  290. !
  291. isString
  292. ^ false
  293. !
  294. isSymbol
  295. ^ false
  296. !
  297. notNil
  298. ^ self isNil not
  299. !
  300. respondsTo: aSelector
  301. ^ self class canUnderstand: aSelector
  302. ! !
  303. !Object class methodsFor: 'helios'!
  304. accessorProtocolWith: aGenerator
  305. aGenerator accessorProtocolForObject
  306. !
  307. accessorsSourceCodesWith: aGenerator
  308. aGenerator accessorsForObject
  309. !
  310. initializeProtocolWith: aGenerator
  311. aGenerator initializeProtocolForObject
  312. !
  313. initializeSourceCodesWith: aGenerator
  314. aGenerator initializeForObject
  315. ! !
  316. !Object class methodsFor: 'initialization'!
  317. initialize
  318. "no op"
  319. ! !
  320. Object subclass: #Boolean
  321. instanceVariableNames: ''
  322. package: 'Kernel-Objects'!
  323. !Boolean commentStamp!
  324. I define the protocol for logic testing operations and conditional control structures for the logical values (see the `controlling` protocol).
  325. I have two instances, `true` and `false`.
  326. I am directly mapped to JavaScript Boolean. The `true` and `false` objects are the JavaScript boolean objects.
  327. ## Usage Example:
  328. aBoolean not ifTrue: [ ... ] ifFalse: [ ... ]!
  329. !Boolean methodsFor: 'comparing'!
  330. = aBoolean
  331. <
  332. return aBoolean !!= null &&
  333. typeof aBoolean._isBoolean === "function" &&
  334. aBoolean._isBoolean() &&
  335. Boolean(self == true) == aBoolean
  336. >
  337. !
  338. == aBoolean
  339. ^ self = aBoolean
  340. ! !
  341. !Boolean methodsFor: 'controlling'!
  342. & aBoolean
  343. <
  344. if(self == true) {
  345. return aBoolean;
  346. } else {
  347. return false;
  348. }
  349. >
  350. !
  351. and: aBlock
  352. ^ self = true
  353. ifTrue: aBlock
  354. ifFalse: [ false ]
  355. !
  356. ifFalse: aBlock
  357. "inlined in the Compiler"
  358. ^ self ifTrue: [] ifFalse: aBlock
  359. !
  360. ifFalse: aBlock ifTrue: anotherBlock
  361. "inlined in the Compiler"
  362. ^ self ifTrue: anotherBlock ifFalse: aBlock
  363. !
  364. ifTrue: aBlock
  365. "inlined in the Compiler"
  366. ^ self ifTrue: aBlock ifFalse: []
  367. !
  368. ifTrue: aBlock ifFalse: anotherBlock
  369. "inlined in the Compiler"
  370. <
  371. if(self == true) {
  372. return aBlock._value();
  373. } else {
  374. return anotherBlock._value();
  375. }
  376. >
  377. !
  378. not
  379. ^ self = false
  380. !
  381. or: aBlock
  382. ^ self = true
  383. ifTrue: [ true ]
  384. ifFalse: aBlock
  385. !
  386. | aBoolean
  387. <
  388. if(self == true) {
  389. return true;
  390. } else {
  391. return aBoolean;
  392. }
  393. >
  394. ! !
  395. !Boolean methodsFor: 'converting'!
  396. asBit
  397. ^ self ifTrue: [ 1 ] ifFalse: [ 0 ]
  398. !
  399. asJSON
  400. ^ self
  401. !
  402. asString
  403. < return self.toString() >
  404. ! !
  405. !Boolean methodsFor: 'copying'!
  406. deepCopy
  407. ^ self
  408. !
  409. shallowCopy
  410. ^ self
  411. ! !
  412. !Boolean methodsFor: 'printing'!
  413. printOn: aStream
  414. aStream nextPutAll: self asString
  415. ! !
  416. !Boolean methodsFor: 'testing'!
  417. isBoolean
  418. ^ true
  419. !
  420. isImmutable
  421. ^ true
  422. ! !
  423. Object subclass: #Date
  424. instanceVariableNames: ''
  425. package: 'Kernel-Objects'!
  426. !Date commentStamp!
  427. I am used to work with both dates and times. Therefore `Date today` and `Date now` are both valid in
  428. Amber and answer the same date object.
  429. Date directly maps to the `Date()` JavaScript constructor, and Amber date objects are JavaScript date objects.
  430. ## API
  431. The class-side `instance creation` protocol contains some convenience methods for creating date/time objects such as `#fromSeconds:`.
  432. Arithmetic and comparison is supported (see the `comparing` and `arithmetic` protocols).
  433. The `converting` protocol provides convenience methods for various convertions (to numbers, strings, etc.).!
  434. !Date methodsFor: 'accessing'!
  435. day
  436. ^ self dayOfWeek
  437. !
  438. day: aNumber
  439. self dayOfWeek: aNumber
  440. !
  441. dayOfMonth
  442. <return self.getDate()>
  443. !
  444. dayOfMonth: aNumber
  445. <self.setDate(aNumber)>
  446. !
  447. dayOfWeek
  448. <return self.getDay() + 1>
  449. !
  450. dayOfWeek: aNumber
  451. <return self.setDay(aNumber - 1)>
  452. !
  453. hours
  454. <return self.getHours()>
  455. !
  456. hours: aNumber
  457. <self.setHours(aNumber)>
  458. !
  459. milliseconds
  460. <return self.getMilliseconds()>
  461. !
  462. milliseconds: aNumber
  463. <self.setMilliseconds(aNumber)>
  464. !
  465. minutes
  466. <return self.getMinutes()>
  467. !
  468. minutes: aNumber
  469. <self.setMinutes(aNumber)>
  470. !
  471. month
  472. <return self.getMonth() + 1>
  473. !
  474. month: aNumber
  475. <self.setMonth(aNumber - 1)>
  476. !
  477. seconds
  478. <return self.getSeconds()>
  479. !
  480. seconds: aNumber
  481. <self.setSeconds(aNumber)>
  482. !
  483. time
  484. <return self.getTime()>
  485. !
  486. time: aNumber
  487. <self.setTime(aNumber)>
  488. !
  489. year
  490. <return self.getFullYear()>
  491. !
  492. year: aNumber
  493. <self.setFullYear(aNumber)>
  494. ! !
  495. !Date methodsFor: 'arithmetic'!
  496. + aDate
  497. <return self + aDate>
  498. !
  499. - aDate
  500. <return self - aDate>
  501. ! !
  502. !Date methodsFor: 'comparing'!
  503. < aDate
  504. <return self < aDate>
  505. !
  506. <= aDate
  507. <return self <= aDate>
  508. !
  509. > aDate
  510. <return self >> aDate>
  511. !
  512. >= aDate
  513. <return self >>= aDate>
  514. ! !
  515. !Date methodsFor: 'converting'!
  516. asDateString
  517. <return self.toDateString()>
  518. !
  519. asLocaleString
  520. <return self.toLocaleString()>
  521. !
  522. asMilliseconds
  523. ^ self time
  524. !
  525. asNumber
  526. ^ self asMilliseconds
  527. !
  528. asString
  529. <return self.toString()>
  530. !
  531. asTimeString
  532. <return self.toTimeString()>
  533. ! !
  534. !Date methodsFor: 'printing'!
  535. printOn: aStream
  536. aStream nextPutAll: self asString
  537. ! !
  538. !Date class methodsFor: 'helios'!
  539. heliosClass
  540. ^ 'magnitude'
  541. ! !
  542. !Date class methodsFor: 'instance creation'!
  543. fromMilliseconds: aNumber
  544. ^ self new: aNumber
  545. !
  546. fromSeconds: aNumber
  547. ^ self fromMilliseconds: aNumber * 1000
  548. !
  549. fromString: aString
  550. "Example: Date fromString('2011/04/15 00:00:00')"
  551. ^ self new: aString
  552. !
  553. millisecondsToRun: aBlock
  554. | t |
  555. t := Date now.
  556. aBlock value.
  557. ^ Date now - t
  558. !
  559. new: anObject
  560. <return new Date(anObject)>
  561. !
  562. now
  563. ^ self today
  564. !
  565. today
  566. ^ self new
  567. ! !
  568. Object subclass: #Number
  569. instanceVariableNames: ''
  570. package: 'Kernel-Objects'!
  571. !Number commentStamp!
  572. I am the Amber representation for all numbers.
  573. I am directly mapped to JavaScript Number.
  574. ## API
  575. I provide all necessary methods for arithmetic operations, comparison, conversion and so on with numbers.
  576. My instances can also be used to evaluate a block a fixed number of times:
  577. 5 timesRepeat: [ Transcript show: 'This will be printed 5 times'; cr ].
  578. 1 to: 5 do: [ :aNumber| Transcript show: aNumber asString; cr ].
  579. 1 to: 10 by: 2 do: [ :aNumber| Transcript show: aNumber asString; cr ].!
  580. !Number methodsFor: 'accessing'!
  581. identityHash
  582. ^ self asString, 'n'
  583. ! !
  584. !Number methodsFor: 'arithmetic'!
  585. * aNumber
  586. "Inlined in the Compiler"
  587. <return self * aNumber>
  588. !
  589. + aNumber
  590. "Inlined in the Compiler"
  591. <return self + aNumber>
  592. !
  593. - aNumber
  594. "Inlined in the Compiler"
  595. <return self - aNumber>
  596. !
  597. / aNumber
  598. "Inlined in the Compiler"
  599. <return self / aNumber>
  600. !
  601. // aNumber
  602. ^ (self / aNumber) floor
  603. !
  604. \\ aNumber
  605. <return self % aNumber>
  606. !
  607. abs
  608. <return Math.abs(self);>
  609. !
  610. max: aNumber
  611. <return Math.max(self, aNumber);>
  612. !
  613. min: aNumber
  614. <return Math.min(self, aNumber);>
  615. !
  616. negated
  617. ^ 0 - self
  618. ! !
  619. !Number methodsFor: 'comparing'!
  620. < aNumber
  621. "Inlined in the Compiler"
  622. <return self < aNumber>
  623. !
  624. <= aNumber
  625. "Inlined in the Compiler"
  626. <return self <= aNumber>
  627. !
  628. = aNumber
  629. <
  630. return aNumber !!= null &&
  631. typeof aNumber._isNumber === "function" &&
  632. aNumber._isNumber() &&
  633. Number(self) == aNumber
  634. >
  635. !
  636. > aNumber
  637. "Inlined in the Compiler"
  638. <return self >> aNumber>
  639. !
  640. >= aNumber
  641. "Inlined in the Compiler"
  642. <return self >>= aNumber>
  643. ! !
  644. !Number methodsFor: 'converting'!
  645. & aNumber
  646. <return self & aNumber>
  647. !
  648. @ aNumber
  649. ^ Point x: self y: aNumber
  650. !
  651. asJSON
  652. ^ self
  653. !
  654. asJavascript
  655. ^ '(', self printString, ')'
  656. !
  657. asNumber
  658. ^ self
  659. !
  660. asPoint
  661. ^ Point x: self y: self
  662. !
  663. asString
  664. < return String(self) >
  665. !
  666. atRandom
  667. ^ (Random new next * self) truncated + 1
  668. !
  669. ceiling
  670. <return Math.ceil(self);>
  671. !
  672. floor
  673. <return Math.floor(self);>
  674. !
  675. rounded
  676. <return Math.round(self);>
  677. !
  678. to: aNumber
  679. | array first last count |
  680. first := self truncated.
  681. last := aNumber truncated + 1.
  682. count := 1.
  683. array := Array new.
  684. (last - first) timesRepeat: [
  685. array at: count put: first.
  686. count := count + 1.
  687. first := first + 1 ].
  688. ^ array
  689. !
  690. to: stop by: step
  691. | array value pos |
  692. value := self.
  693. array := Array new.
  694. pos := 1.
  695. step = 0 ifTrue: [ self error: 'step must be non-zero' ].
  696. step < 0
  697. ifTrue: [ [ value >= stop ] whileTrue: [
  698. array at: pos put: value.
  699. pos := pos + 1.
  700. value := value + step ]]
  701. ifFalse: [ [ value <= stop ] whileTrue: [
  702. array at: pos put: value.
  703. pos := pos + 1.
  704. value := value + step ]].
  705. ^ array
  706. !
  707. truncated
  708. <
  709. if(self >>= 0) {
  710. return Math.floor(self);
  711. } else {
  712. return Math.floor(self * (-1)) * (-1);
  713. };
  714. >
  715. !
  716. | aNumber
  717. <return self | aNumber>
  718. ! !
  719. !Number methodsFor: 'copying'!
  720. copy
  721. ^ self
  722. !
  723. deepCopy
  724. ^ self copy
  725. ! !
  726. !Number methodsFor: 'enumerating'!
  727. timesRepeat: aBlock
  728. | count |
  729. count := 1.
  730. [ count > self ] whileFalse: [
  731. aBlock value.
  732. count := count + 1 ]
  733. !
  734. to: stop by: step do: aBlock
  735. | value |
  736. value := self.
  737. step = 0 ifTrue: [ self error: 'step must be non-zero' ].
  738. step < 0
  739. ifTrue: [ [ value >= stop ] whileTrue: [
  740. aBlock value: value.
  741. value := value + step ]]
  742. ifFalse: [ [ value <= stop ] whileTrue: [
  743. aBlock value: value.
  744. value := value + step ]]
  745. !
  746. to: stop do: aBlock
  747. "Evaluate aBlock for each number from self to aNumber."
  748. | nextValue |
  749. nextValue := self.
  750. [ nextValue <= stop ]
  751. whileTrue:
  752. [ aBlock value: nextValue.
  753. nextValue := nextValue + 1 ]
  754. ! !
  755. !Number methodsFor: 'mathematical functions'!
  756. ** exponent
  757. ^ self raisedTo: exponent
  758. !
  759. arcCos
  760. <return Math.acos(self);>
  761. !
  762. arcSin
  763. <return Math.asin(self);>
  764. !
  765. arcTan
  766. <return Math.atan(self);>
  767. !
  768. cos
  769. <return Math.cos(self);>
  770. !
  771. ln
  772. <return Math.log(self);>
  773. !
  774. log
  775. <return Math.log(self) / Math.LN10;>
  776. !
  777. log: aNumber
  778. <return Math.log(self) / Math.log(aNumber);>
  779. !
  780. raisedTo: exponent
  781. <return Math.pow(self, exponent);>
  782. !
  783. sign
  784. self isZero
  785. ifTrue: [ ^ 0 ].
  786. self positive
  787. ifTrue: [ ^ 1 ]
  788. ifFalse: [ ^ -1 ].
  789. !
  790. sin
  791. <return Math.sin(self);>
  792. !
  793. sqrt
  794. <return Math.sqrt(self)>
  795. !
  796. squared
  797. ^ self * self
  798. !
  799. tan
  800. <return Math.tan(self);>
  801. ! !
  802. !Number methodsFor: 'printing'!
  803. printOn: aStream
  804. aStream nextPutAll: self asString
  805. !
  806. printShowingDecimalPlaces: placesDesired
  807. <return self.toFixed(placesDesired)>
  808. ! !
  809. !Number methodsFor: 'testing'!
  810. even
  811. ^ 0 = (self \\ 2)
  812. !
  813. isImmutable
  814. ^ true
  815. !
  816. isNumber
  817. ^ true
  818. !
  819. isZero
  820. ^ self = 0
  821. !
  822. negative
  823. "Answer whether the receiver is mathematically negative."
  824. ^ self < 0
  825. !
  826. odd
  827. ^ self even not
  828. !
  829. positive
  830. "Answer whether the receiver is positive or equal to 0. (ST-80 protocol)."
  831. ^ self >= 0
  832. ! !
  833. !Number class methodsFor: 'helios'!
  834. heliosClass
  835. ^ 'magnitude'
  836. ! !
  837. !Number class methodsFor: 'instance creation'!
  838. e
  839. <return Math.E;>
  840. !
  841. pi
  842. <return Math.PI>
  843. ! !
  844. Object subclass: #Point
  845. instanceVariableNames: 'x y'
  846. package: 'Kernel-Objects'!
  847. !Point commentStamp!
  848. I represent an x-y pair of numbers usually designating a geometric coordinate.
  849. ## API
  850. Instances are traditionally created using the binary `#@` message to a number:
  851. 100@120
  852. Points can then be arithmetically manipulated:
  853. 100@100 + (10@10)
  854. ...or for example:
  855. (100@100) * 2
  856. **NOTE:** Creating a point with a negative y-value will need a space after `@` in order to avoid a parsing error:
  857. 100@ -100 "but 100@-100 would not parse"!
  858. !Point methodsFor: 'accessing'!
  859. x
  860. ^ x
  861. !
  862. x: aNumber
  863. x := aNumber
  864. !
  865. y
  866. ^ y
  867. !
  868. y: aNumber
  869. y := aNumber
  870. ! !
  871. !Point methodsFor: 'arithmetic'!
  872. * aPoint
  873. ^ Point x: self x * aPoint asPoint x y: self y * aPoint asPoint y
  874. !
  875. + aPoint
  876. ^ Point x: self x + aPoint asPoint x y: self y + aPoint asPoint y
  877. !
  878. - aPoint
  879. ^ Point x: self x - aPoint asPoint x y: self y - aPoint asPoint y
  880. !
  881. / aPoint
  882. ^ Point x: self x / aPoint asPoint x y: self y / aPoint asPoint y
  883. ! !
  884. !Point methodsFor: 'comparing'!
  885. < aPoint
  886. ^ self x < aPoint x and: [
  887. self y < aPoint y ]
  888. !
  889. <= aPoint
  890. ^ self x <= aPoint x and: [
  891. self y <= aPoint y ]
  892. !
  893. = aPoint
  894. ^ aPoint class = self class and: [
  895. (aPoint x = self x) & (aPoint y = self y) ]
  896. !
  897. > aPoint
  898. ^ self x > aPoint x and: [
  899. self y > aPoint y ]
  900. !
  901. >= aPoint
  902. ^ self x >= aPoint x and: [
  903. self y >= aPoint y ]
  904. ! !
  905. !Point methodsFor: 'converting'!
  906. asPoint
  907. ^ self
  908. ! !
  909. !Point methodsFor: 'printing'!
  910. printOn: aStream
  911. "Print receiver in classic x@y notation."
  912. x printOn: aStream.
  913. aStream nextPutAll: '@'.
  914. (y notNil and: [ y negative ]) ifTrue: [
  915. "Avoid ambiguous @- construct"
  916. aStream space ].
  917. y printOn: aStream
  918. ! !
  919. !Point methodsFor: 'transforming'!
  920. dist: aPoint
  921. "Answer the distance between aPoint and the receiver."
  922. | dx dy |
  923. dx := aPoint x - x.
  924. dy := aPoint y - y.
  925. ^ (dx * dx + (dy * dy)) sqrt
  926. !
  927. translateBy: delta
  928. "Answer a Point translated by delta (an instance of Point)."
  929. ^ (delta x + x) @ (delta y + y)
  930. ! !
  931. !Point class methodsFor: 'helios'!
  932. heliosClass
  933. ^ 'magnitude'
  934. ! !
  935. !Point class methodsFor: 'instance creation'!
  936. x: aNumber y: anotherNumber
  937. ^ self new
  938. x: aNumber;
  939. y: anotherNumber;
  940. yourself
  941. ! !
  942. Object subclass: #Random
  943. instanceVariableNames: ''
  944. package: 'Kernel-Objects'!
  945. !Random commentStamp!
  946. I an used to generate a random number and I am implemented as a trivial wrapper around javascript `Math.random()`.
  947. ## API
  948. The typical use case it to use the `#next` method like the following:
  949. Random new next
  950. 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`
  951. 10 atRandom
  952. A random number in a specific interval can be obtained with the following:
  953. (3 to: 7) atRandom
  954. 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:
  955. 5 atRandom + 2
  956. Since `#atRandom` is implemented in `SequencableCollection` you can easy pick an element at random:
  957. #('a' 'b' 'c') atRandom
  958. As well as letter from a `String`:
  959. 'abc' atRandom
  960. Since Amber does not have Characters this will return a `String` of length 1 like for example `'b'`.!
  961. !Random methodsFor: 'accessing'!
  962. next
  963. <return Math.random()>
  964. !
  965. next: anInteger
  966. ^ (1 to: anInteger) collect: [ :each | self next ]
  967. ! !
  968. Object subclass: #UndefinedObject
  969. instanceVariableNames: ''
  970. package: 'Kernel-Objects'!
  971. !UndefinedObject commentStamp!
  972. I describe the behavior of my sole instance, `nil`. `nil` represents a prior value for variables that have not been initialized, or for results which are meaningless.
  973. `nil` is the Smalltalk equivalent of the `undefined` JavaScript object.
  974. __note:__ When sending messages to the `undefined` JavaScript object, it will be replaced by `nil`.!
  975. !UndefinedObject methodsFor: 'class creation'!
  976. subclass: aString instanceVariableNames: anotherString
  977. ^ self subclass: aString instanceVariableNames: anotherString package: nil
  978. !
  979. subclass: aString instanceVariableNames: aString2 category: aString3
  980. "Kept for compatibility."
  981. self deprecatedAPI.
  982. ^ self subclass: aString instanceVariableNames: aString2 package: aString3
  983. !
  984. subclass: aString instanceVariableNames: aString2 package: aString3
  985. ^ ClassBuilder new
  986. superclass: self subclass: aString asString instanceVariableNames: aString2 package: aString3
  987. ! !
  988. !UndefinedObject methodsFor: 'converting'!
  989. asJSON
  990. ^ null
  991. ! !
  992. !UndefinedObject methodsFor: 'copying'!
  993. deepCopy
  994. ^ self
  995. !
  996. shallowCopy
  997. ^ self
  998. ! !
  999. !UndefinedObject methodsFor: 'printing'!
  1000. printOn: aStream
  1001. aStream nextPutAll: 'nil'
  1002. ! !
  1003. !UndefinedObject methodsFor: 'testing'!
  1004. ifNil: aBlock
  1005. "inlined in the Compiler"
  1006. ^ self ifNil: aBlock ifNotNil: []
  1007. !
  1008. ifNil: aBlock ifNotNil: anotherBlock
  1009. "inlined in the Compiler"
  1010. ^ aBlock value
  1011. !
  1012. ifNotNil: aBlock
  1013. "inlined in the Compiler"
  1014. ^ self
  1015. !
  1016. ifNotNil: aBlock ifNil: anotherBlock
  1017. "inlined in the Compiler"
  1018. ^ anotherBlock value
  1019. !
  1020. isImmutable
  1021. ^ true
  1022. !
  1023. isNil
  1024. ^ true
  1025. !
  1026. notNil
  1027. ^ false
  1028. ! !
  1029. !UndefinedObject class methodsFor: 'instance creation'!
  1030. new
  1031. self error: 'You cannot create new instances of UndefinedObject. Use nil'
  1032. ! !