API-CHANGES.txt 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163
  1. 0.30.1:
  2. + HashedCollection >>
  3. + jsonLiteralized
  4. + JSObjectProxy class >>
  5. + newObject
  6. 0.29.7:
  7. * Add TPromiseModel with unary value / signal passing to 1-arg.
  8. * Promise class as well as PromiseExecution use it.
  9. * Add class NonLifoReturn.
  10. * Including convenient NonLifoReturn class >> #reifyIfFeasible:.
  11. + Error class >>
  12. + messageText:
  13. + PromiseExecution >>
  14. + do:
  15. + signal:
  16. + try:
  17. + value:
  18. + TPromiseModel >>
  19. + signal
  20. + signal:
  21. + value
  22. + value:
  23. 0.29.5:
  24. + (model in `Promise new: [ :model | ]`) >>
  25. + do:
  26. + try:
  27. 0.29.3:
  28. * Deprecate TestCase >> debugCase.
  29. * Remove class DebugTestContext.
  30. + JSObjectProxy
  31. + isThenable
  32. + Promise class >>
  33. + delayMilliseconds:
  34. + TIsInGroup >>
  35. + isThenable
  36. + TThenable >>
  37. + isThenable
  38. 0.29.2:
  39. * Deprecate ClassBuilder >> addSubclass:named:instanceVariableNames:package:.
  40. * Deprecate ... >> migrateClassNamed:superclass:instanceVariableNames:package:.
  41. * Behavior >> instanceVariableNames aimed at only that. No visible change atm.
  42. * Deprecate Object >> asJavaScript{Object,Source}.
  43. * Hard to do generically if slots are added later.
  44. * InstanceVar => SlotVar and related apis (addIVar: => addSlotVar:).
  45. + Behavior >>
  46. + slots
  47. + Boolean >>
  48. + asJavaScriptSource
  49. + ClassBuilder >>
  50. + addSubclass:named:slots:package:
  51. + migrateClassNamed:superclass:slots:package:
  52. + ProtoObject >>
  53. + perform:with:
  54. + SequenceableCollection >>
  55. + pairsCollect:
  56. + pairsDo:
  57. + TBehaviorDefaults >>
  58. + slots
  59. + TBehaviorProvider >>
  60. + allInstanceVariableNames
  61. + allSlotNames
  62. + allSlots
  63. + instanceVariableNames
  64. + slotNames
  65. + UndefinedObject >>
  66. + asJavaScriptSource
  67. - Behavior >>
  68. - allInstanceVariableNames
  69. - instanceVariableNames
  70. - TBehaviorDefaults >>
  71. - allInstanceVariableNames
  72. 0.29.1:
  73. + Package >>
  74. + context
  75. + contextBlock
  76. + contextBlock:
  77. - Package >>
  78. - evalBlock
  79. - evalBlock:
  80. 0.27.1:
  81. + Number >>
  82. + isFinite
  83. + isNaN
  84. + Number class >>
  85. + negativeInfinity
  86. + positiveInfinity
  87. 0.27.0:
  88. + JSObjectProxy class >>
  89. + associationsOfProxy:
  90. 0.26.0:
  91. * Deprecate $core.seamless.
  92. + MethodContext >>
  93. + hydrated
  94. 0.25.4:
  95. * Add class DebugTestContext.
  96. + TestCase >>
  97. + debugCase
  98. 0.25.1:
  99. + Collection >>
  100. + copyEmpty
  101. + shortenedPrintString
  102. 0.25.0:
  103. * Deprecate Behavior >> javascriptConstructor(:)
  104. * Deprecate ProtoObject >> instVarAt:(put:)
  105. * Lots of changes in Compiler.
  106. * Added Teachable class.
  107. + Array >>
  108. + allIn:
  109. + Behavior >>
  110. + alternateConstructorViaSelector:
  111. + applySuperConstructorOn:withArguments:
  112. + beJavaScriptSubclassOf:
  113. + javaScriptConstructor
  114. + javaScriptConstructor:
  115. + superPrototype
  116. + BlockClosure >>
  117. + tryIfTrue:catch:
  118. + ProtoObject >>
  119. + instVarNamed:
  120. + instVarNamed:put:
  121. + SequenceableCollection >>
  122. + copyWithFirst:
  123. + SmalltalkImage >>
  124. + isError:
  125. + try:ifTrue:catch:
  126. + amber/boot api >>
  127. + detachClass(klass)
  128. + amber/helpers exports >>
  129. + $nil
  130. - Error >>
  131. - beSmalltalkError
  132. - isSmalltalkError
  133. - JavaScriptError >>
  134. - shouldBeStubbed
  135. - wrap
  136. - MethodContext >>
  137. - stubHere
  138. - stubToAtMost:
  139. - amber/boot api >>
  140. - addElement(arraySet, el)
  141. - removeElement(arraySet, el)
  142. 0.23.2:
  143. + Platform class >>
  144. + fetch:
  145. + fetchUrl:options:
  146. + BrowserPlatform >>
  147. + fetch:
  148. + fetchUrl:options:
  149. + NodePlatform >>
  150. + fetch:
  151. + fetchUrl:options:
  152. 0.23.1:
  153. + TBehaviorDefaults >>
  154. + includingPossibleMetaDo:
  155. + Class >>
  156. + includingPossibleMetaDo:
  157. + CompiledMethod >>
  158. + origin
  159. - SmalltalkImage >>
  160. - includesKey:
  161. 0.23.0:
  162. * Namespace change: amber_core => amber/core.
  163. * amber/boot api addClass only takes 3 params; 4 param version deprecated
  164. + SmalltalkImage >>
  165. + beClean
  166. + amber/helpers exports >>
  167. + beClean
  168. + amber/boot api >>
  169. + setSlots(klass, arrayOfNames)
  170. 0.22.4:
  171. * Remove class IndexableCollection, trait TKeyValueCollection.
  172. * Merge CharacterArray class into String class
  173. * Deprecate CharacterArray class
  174. * Deprecate Collection >> copyWithAll:, #, is enough.
  175. + amber/helpers exports
  176. + loadPackages
  177. - Array >>
  178. - numericallyIndexable
  179. - Set
  180. - detect:ifNone: (pushed up to Collection)
  181. - SequenceableCollection
  182. - numericallyIndexable
  183. - String >>
  184. - numericallyIndexable
  185. 0.22.1:
  186. + BlockClosure >>
  187. + provided
  188. + Class >>
  189. + provided
  190. 0.22.0:
  191. * Deprecate Exception >> resignal. Should have been #pass.
  192. + Compiler >>
  193. + ast:forClass:protocol:
  194. + cleanCodeGenerator
  195. + codeGenerator
  196. + forClass:protocol:
  197. + Exception
  198. + outer
  199. + pass
  200. + JSObjectProxy >>
  201. + removeKey:
  202. + Number >>
  203. + ln1p
  204. + SmalltalkImage >>
  205. + postLoad
  206. - AmberBootstrapInitialization class >>
  207. - initializeClasses
  208. - ClassBuilder >>
  209. - setupClass:
  210. - Compiler >>
  211. - compileNode:forClass:package:
  212. - ProtoObject
  213. - asJSON
  214. - asJavascript
  215. - SmalltalkImage >>
  216. - packageAt:
  217. - amber/boot api >>
  218. - nextId
  219. 0.21.1:
  220. + ClassBuilder >>
  221. + class:instanceVariables:
  222. + JSObjectProxy class >>
  223. + null
  224. + undefined
  225. - ClassBuilder >>
  226. - basicClass:instanceVariableNames:
  227. 0.21.0:
  228. * Deprecate SmalltalkImage >> existsJsGlobal:
  229. + Number >>
  230. + bitAnd:
  231. + bitNot
  232. + bitOr:
  233. + bitXor:
  234. + printStringBase:
  235. + Platform class >>
  236. + includesGlobal:
  237. 0.20.0:
  238. * Internal kernel fields naming changes.
  239. + amber/boot api >>
  240. + traitsOrClasses
  241. - SmalltalkImage >>
  242. - legacyGlobalJsVariables
  243. - amber/boot >>
  244. - nil
  245. - dnu
  246. - amber/boot api >>
  247. - classes
  248. 0.19.1:
  249. * Deprecate amber/boot api nextId, prop globalJsVariables.
  250. * Deprecate ProtoObject >> identityHash.
  251. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  252. + AmberBootstrapInitialization class >>
  253. + run
  254. + initializeClasses
  255. + organizeClasses
  256. + organizeMethods
  257. + Behavior >>
  258. + basicOrganization
  259. + basicOrganization:
  260. + ClassOrganizer >>
  261. + theClass
  262. + ClassOrganizer class >>
  263. + on:
  264. + Compiler class >>
  265. + eval:
  266. + JavaScriptException >>
  267. + shouldBeStubbed
  268. + wrap
  269. + Message class >>
  270. + selector:arguments:notUnderstoodBy:
  271. + MethodContext >>
  272. + stubHere
  273. + stubToAtMost:
  274. + NonBooleanReceiver class >>
  275. + signalOn:
  276. + Package >>
  277. + evalBlock
  278. + evalBlock:
  279. + Package class >>
  280. + named:javaScriptDescriptor:
  281. + SmalltalkImage >>
  282. + packageDictionary
  283. + packageAt:ifPresent:
  284. + TBehaviorProvider >>
  285. + methodOrganizationEnter:andLeave:
  286. + TMasterBehavior >>
  287. + definedMethods
  288. + enterOrganization
  289. + leaveOrganization
  290. + Trait >>
  291. + basicOrganization
  292. + basicOrganization:
  293. + UndefinedObject >>
  294. + ==
  295. + Number >>
  296. + min:max:
  297. + degreesToRadians
  298. + radiansToDegrees
  299. + arcTan:
  300. + between:and:
  301. + Number class >>
  302. + radiansPerDegree
  303. + Point >>
  304. + dotProduct:
  305. + normal
  306. + angle
  307. + normalized
  308. + r
  309. + corner:
  310. + extent:
  311. + rectangle:
  312. + Rectangle >>
  313. + =
  314. + corner
  315. + origin
  316. + containsPoint:
  317. + containsRect:
  318. + printOn:
  319. + Rectangle class >>
  320. + origin:corner:
  321. + origin:extent:
  322. + point:point:
  323. - Package >>
  324. - basicName:
  325. - basicImports
  326. - ProtoObject >>
  327. - isSameInstanceAs:
  328. - ObjectTest >>
  329. - testIdentityHash
  330. - amber/boot api >>
  331. - reservedWords (with the hope no one uses it directly)
  332. 0.19.0:
  333. * Remove class Thenable, add trait TThenable.
  334. * Behavior / Trait hierarchy uses traits.
  335. + NativeFunction class >>
  336. + isNativeFunction:
  337. + IRInstructions >>
  338. + isSelf
  339. + isSuper
  340. + IRVariable >>
  341. + isSelf
  342. + isSuper
  343. + ScopeVar >>
  344. + isSelf
  345. + isSuper
  346. + PseudoVar >>
  347. + isSelf
  348. + isSuper
  349. +UndefinedObject >>
  350. + identityHash
  351. + value
  352. + amber/boot >>
  353. + nilAsValue
  354. - IRSend >>
  355. - isSuperSend
  356. 0.18.3:
  357. * Move {add,remove}Element from Array.prototype to kernel API.
  358. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  359. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  360. * Add class Trait as subclass of BehaviorBody.
  361. * Add class TraitTransformation.
  362. * Deprecate #asJSON in favour of #asJavaScriptObject.
  363. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  364. + BehaviorBody >>
  365. + setTraitComposition:
  366. + traitCompositionDefinition
  367. + traitUsers
  368. + allSubclassesDo:
  369. + superclass
  370. + Trait >>
  371. + allInstanceVariableNames
  372. + allSubclassesDo:
  373. + asJavascript
  374. + asTraitComposition
  375. + category
  376. + classTag
  377. + definition
  378. + package
  379. + superclass
  380. + theMetaClass
  381. + theNonMetaClass
  382. + exportBehaviorDefinitionTo:using:
  383. + traitUsers
  384. + package:
  385. + Trait class >>
  386. + named:package:
  387. + named:uses:package:
  388. + TraitTransformation >>
  389. + -
  390. + @
  391. + addAliases:
  392. + addExclusions:
  393. + aliases
  394. + asJSON
  395. + asJavascript
  396. + asTraitComposition
  397. + asTraitTransformation
  398. + definition
  399. + exclusions
  400. + initialize
  401. + postCopy
  402. + trait
  403. + trait:
  404. + Collection >>
  405. + copyWithout:
  406. + SequenceableCollection >>
  407. + reverseDo:
  408. + Array >>
  409. + asTraitComposition
  410. + amber/boot api >>
  411. + addElement
  412. + removeElement
  413. + wrapJavaScript
  414. + CharacterArray >>
  415. + asSymbolPrintOn:
  416. + symbolPrintString
  417. + String >>
  418. + isSelector
  419. + StringStream >>
  420. + print:
  421. + printSymbol:
  422. + Package >>
  423. + traitCompositions
  424. + Class >>
  425. + subClass:
  426. + subClass:uses:
  427. + subClass:uses:instanceVariables:
  428. + subClass:uses:instanceVariables:category:
  429. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  430. + subClass:uses:instanceVariables:package:
  431. + UndefinedObject >>
  432. + subClass:
  433. + subClass:uses:
  434. + subClass:uses:instanceVariables:
  435. + subClass:uses:instanceVariables:category:
  436. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  437. + subClass:uses:instanceVariables:package:
  438. + Metaclass >>
  439. + uses:instanceVariableNames:
  440. - Association >>
  441. - importsString
  442. - String >>
  443. - importsString
  444. - AbstractExporter
  445. - classNameFor:
  446. - Exporter >>
  447. - jsClassNameFor:
  448. 0.18.2:
  449. * Add Platform-DOM package with DOM-related stuff.
  450. * Platform-DOM not loaded by default. Packages that will use it will import it.
  451. + PlatformDom class >>
  452. + isFeasible
  453. + isDomNode:
  454. + newCustomEvent:detail:
  455. + toArray:
  456. + CharacterArray >>
  457. + asDomNode
  458. + Collection >>
  459. + asDomNode
  460. + JSObjectProxy >>
  461. + asDomNode
  462. + String >>
  463. + htmlTextContent
  464. 0.18.1:
  465. + ASTNode >>
  466. + withTail:
  467. - SendNode >>
  468. - valueWithReceiver:
  469. 0.18.0:
  470. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  471. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  472. * Some internal API changes in Compiler-* (including the move to DAG-node).
  473. - Object >>
  474. - throw:
  475. 0.17.0:
  476. * Remove classes InterfacingObject, PlatformInterface.
  477. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  478. + amber/boot >>
  479. + nilAsReceiver
  480. - NativeFunction class >>
  481. - constructor:
  482. - constructor:value:
  483. - constructor:value:value:
  484. - constructor:value:value:value:
  485. 0.16.1:
  486. * Deprecate $boot.dnu (use $boot.nilAsClass).
  487. + amber/boot >>
  488. + nilAsClass
  489. 0.16.0:
  490. * Deprecate ClassBuilder >> setupClass:
  491. * $core.initialize now returns a Promise
  492. * $core.addClass now returns the class
  493. + amber/boot api >>
  494. + send2
  495. + traverseClassTree
  496. + Promise class >>
  497. + new
  498. - amber/boot api >>
  499. - wrapClassName
  500. - send
  501. - allSubclasses
  502. - AbstractCodeGenerator >>
  503. - classNameFor:
  504. 0.15.1:
  505. * Thenable class added
  506. * Promise class added, wraps JS Promise, subclass of Thenable
  507. + Thenable >>
  508. + catch:
  509. + on:do:
  510. + on:do:catch:
  511. + then:
  512. + then:catch:
  513. + then:on:do:
  514. + then:on:do:catch:
  515. + JSObjectProxy >>
  516. + catch:
  517. + on:do:
  518. + on:do:catch:
  519. + then:
  520. + then:catch:
  521. + then:on:do:
  522. + then:on:do:catch:
  523. + amber/boot api >>
  524. + seamless
  525. + Promise class >>
  526. + new:
  527. + forBlock:
  528. + value:
  529. + signal:
  530. + all:
  531. + any:
  532. 0.14.18:
  533. * Some internal API changes in Compiler-*.
  534. 0.14.14:
  535. * InterfacingObject >> ajax: deprecated
  536. * PlatformInterface class deprecated
  537. * Class BrowserInterface removed
  538. * Class Terminal, BrowserTerminal added
  539. * Class Platform, BrowserPlatform added
  540. + Environment >>
  541. + renamePackage:to:
  542. + Platform class >>
  543. + globals
  544. + newXhr
  545. + Terminal class >>
  546. + alert:
  547. + confirm:
  548. + prompt:
  549. + prompt:default:
  550. SmalltalkImage >>
  551. + existsJsGlobal:
  552. - PlatformInterface class >>
  553. - initialize
  554. - setWorker:
  555. 0.14.12:
  556. + JSObjectProxy >>
  557. + putOn:
  558. + ProtoStream >>
  559. + nextPutJSObject:
  560. 0.14.11:
  561. * Basic streaming protocol extracted from Stream to ProtoStream
  562. + Object >>
  563. + in:
  564. + JSObjectProxy >>
  565. + in:
  566. 0.14.10:
  567. + JSObjectProxy class >>
  568. + addObjectVariablesTo:ofProxy:
  569. + compareJSObjectOfProxy:withProxy:
  570. + forwardMessage:withArguments:ofProxy:
  571. + jsObject:ofProxy:
  572. + lookupProperty:ofProxy:
  573. - JSObjectProxy >>
  574. - jsObject:
  575. - lookupProperty:
  576. - compareJSObjectWith:
  577. - addObjectVariablesTo:
  578. - forwardMessage:withArguments:
  579. 0.14.4:
  580. + AmdExporter >>
  581. + importsForOutput:
  582. + AbstractCodeGenerator >>
  583. + currentPackage
  584. + currentPackage:
  585. + Compiler >>
  586. + currentPackage
  587. + currentPackage:
  588. + compile:forClass:protocol:
  589. + compileNode:forClass:package:
  590. + SemanticAnalyzer >>
  591. + thePackage
  592. + thePackage:
  593. + isVariableUndefined:inPackage:
  594. - Compiler >>
  595. - compile:
  596. - compile:forClass:
  597. - compileExpression:
  598. - SemanticAnalyzer >>
  599. - isVariableGloabllyUndefined:
  600. - Behavior >>
  601. - compile:
  602. 0.14.3:
  603. * #heliosClass is now #classTag
  604. + Compiler >>
  605. + eval:forPackage:
  606. + Behavior >>
  607. + packageOfProtocol:
  608. + Exporter >>
  609. + exportPackageContextOf:on:
  610. + exportPackageImportsOf:on:
  611. + Package >>
  612. + basicImports
  613. + imports
  614. + imports:
  615. + importsDefinition
  616. + importsFromJson:
  617. + importsAsJson
  618. + sortedImportsAsArray
  619. + validateImports:
  620. + Package class >>
  621. + named:imports:transport:
  622. + Association >>
  623. + importsString
  624. + String >>
  625. + importsString
  626. + ProtoObject >>
  627. + ifNil:
  628. + ifNil:ifNotNil:
  629. + ifNotNil:
  630. + ifNotNil:ifNil:
  631. + isNil
  632. + notNil
  633. - Object >>
  634. - ifNil:
  635. - ifNil:ifNotNil:
  636. - ifNotNil:
  637. - ifNotNil:ifNil:
  638. - isNil
  639. - notNil
  640. 0.14.1:
  641. * NativeFunction class >> constructor:[value:...] deprecated
  642. + NativeFunction class >>
  643. + constructorNamed:
  644. + constructorNamed:value:
  645. + constructorNamed:value:value:
  646. + constructorNamed:value:value:value:
  647. + constructorOf:
  648. + constructorOf:value:
  649. + constructorOf:value:value:
  650. + constructorOf:value:value:value:
  651. + functionNamed:
  652. + functionNamed:value:
  653. + functionNamed:value:value:
  654. + functionNamed:value:value:value:
  655. + functionNamed:valueWithArgs:
  656. + functionOf:
  657. + functionOf:value:
  658. + functionOf:value:value:
  659. + functionOf:value:value:value:
  660. + functionOf:valueWithArgs:
  661. + methodOf:this:
  662. + methodOf:this:value:
  663. + methodOf:this:value:value:
  664. + methodOf:this:value:value:value:
  665. + methodOf:this:valueWithArgs:
  666. + SmalltalkImage >>
  667. + optOut:
  668. + cancelOptOut:
  669. 0.14.0:
  670. + Object >>
  671. + asJQuery
  672. + asJQueryInContext:
  673. + BlockClosure >>
  674. + asJQuery
  675. + asJQueryInContext:
  676. - AnnouncementSubscription >>
  677. - block
  678. - block:
  679. - Collection >>
  680. - contains:
  681. - String >>
  682. - asSelector
  683. - asJavaScriptSelector
  684. - SmalltalkImage >>
  685. - at:
  686. - at:ifAbsent:
  687. - at:put:
  688. - current
  689. - vm
  690. - createPackage:properties:
  691. - MethodContext >>
  692. - temps
  693. - Object >>
  694. - try:catch:
  695. 0.13.2:
  696. + SourceArea class >>
  697. + codeMirror
  698. 0.13.1:
  699. * String >> asSelector is now String >> asJavaScriptMethodName
  700. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  701. * smalltalk.selector is now smalltalk.st2js
  702. * smalltalk.convertSelector is now smalltalk.js2st
  703. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  704. * Smalltalk vm is now Smalltalk core
  705. * boot.js's .vm is now .api
  706. * amber load sets' .vm is now .api
  707. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  708. + smalltalk.
  709. + accessJavaScript
  710. + Object >>
  711. + postMessageTo:
  712. + postMessageTo:origin:
  713. + Class >>
  714. + heliosClass
  715. + SmalltalkImage >>
  716. + core
  717. + amber/boot
  718. + api
  719. + amber/{devel,deploy,lang} exports
  720. + api
  721. - ProtoObject class >>
  722. - heliosClass
  723. - Object class >>
  724. - heliosClass
  725. - amber/boot
  726. - vm
  727. 0.12.6:
  728. + String >>
  729. + value:
  730. + ProtocolAnnouncement >>
  731. + package
  732. + Behavior >>
  733. + isTestClass
  734. + Package >>
  735. + isTestPackage
  736. + amber/{devel,deploy,lang} exports
  737. + nil
  738. + amber/helpers exports
  739. + nil
  740. 0.12.4:
  741. * Package Canvas renamed to Web
  742. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  743. + Announcer >>
  744. + on:do:for:
  745. + Node >>
  746. + navigationNodeAt:ifAbsent:
  747. + BlockClosure >>
  748. + tryCatch:
  749. + Environment >>
  750. + evaluate:for:
  751. + AmberCli >>
  752. + version:
  753. + Object >>
  754. + deprecatedAPI:
  755. - Environment >>
  756. - eval:on:
  757. - evaluateString:on:
  758. 0.12.3:
  759. * Package Import-Export renamed to Kernel-ImportExport
  760. * A dozen of methods moved from Object to ProtoObject
  761. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  762. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  763. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  764. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  765. * Smalltalk current deprecated in favour of Smalltalk
  766. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  767. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  768. + CompiledMethod >>
  769. + defaultProtocol
  770. + Behavior >>
  771. + compile:protocol:
  772. + removeProtocolIfEmpty:
  773. + Package >>
  774. + load
  775. + loadFromNamespace:
  776. + Package class >>
  777. + load:
  778. + load:fromNamespace:
  779. + PackageTransport >> load
  780. + PackageHandler >> load:
  781. + AmdPackageHandler >> load:
  782. + Set >> removeAll
  783. + AssociativeCollection class
  784. + BucketStore class
  785. + SmalltalkImage >>
  786. + globals
  787. + vm
  788. + settings
  789. + Setting class
  790. + String >>
  791. + asSetting
  792. + asSettingIfAbsent:
  793. + settingValue
  794. + settingValueIfAbsent:
  795. + settingValue:
  796. + Smalltalk global variable
  797. - CompiledMethod >>
  798. - category: (use #protocol:)
  799. - defaultCategory
  800. - Behavior >> compile:category:
  801. - HTMLCanvas class >>
  802. - browserVersion
  803. - isMSIE
  804. - isMozilla
  805. - isOpera
  806. - isWebkit
  807. 0.12.2:
  808. * Collection >> contains: is deprecated in favor of anySatisfy:
  809. + Announcer >> on:doOnce:
  810. + String >>
  811. + uriEncoded
  812. + uriDecoded
  813. + uriComponentEncoded
  814. + uriComponentDecoded
  815. + Collection >>
  816. + removeAll
  817. + ifEmpty:ifNotEmpty:
  818. + ifNotEmpty:ifEmpty:
  819. + anyOne
  820. + noneSatisfy:
  821. + anySatisfy:
  822. + allSatisfy:
  823. 0.12.0:
  824. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  825. * Existing classes moved to new KernelInfrastructure package
  826. * ImporterExporter
  827. * are now StreamExporters
  828. * aware of AMD namespaces
  829. * support transport types and commit channels
  830. + Node >>
  831. + nextChild
  832. + method
  833. + postCopy
  834. + isCascadeNode
  835. + isLastChild
  836. + BlockNode >>
  837. + nextNode:
  838. + nextChild
  839. + SendNode >>
  840. + isCascadeSendNode
  841. + shouldBeAliased
  842. + CompiledMethod >> sendTo:arguments:
  843. + Array >>
  844. + addFirst:
  845. + removeLast
  846. + Number >>
  847. + ceiling
  848. + floor
  849. + asNumber
  850. + //
  851. + cos
  852. + sin
  853. + tan
  854. + arcCos
  855. + arcSin
  856. + arcTan
  857. + log
  858. + log:
  859. + raisedTo:
  860. + sign
  861. + **
  862. + ln
  863. + e
  864. + String class >> esc
  865. + String >>
  866. + asMutator
  867. + capitalized
  868. + isCapitalized
  869. + JSProxy >> printString
  870. + Behavior >>
  871. + ownProtocols
  872. + ownMethods
  873. + JSStream >> nextPutSendIndexFor:
  874. + InterfacingObject class
  875. + Interpreter class
  876. + DocumentFragmentTag class
  877. + AbstractExporter class
  878. + PlatformInterface class
  879. - Node >> extent
  880. - JSStream >> nextPutStatement:with:
  881. - Smalltalk.installSuperclass()
  882. - ClassReferenceNode class (now handled via VariableNode)
  883. 0.11.0:
  884. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  885. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  886. * Object>>printString
  887. * replace >>printString with >>printOn:
  888. * replace >>storeString with >>printString
  889. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  890. * Package>>fetch: is now Package>>load:
  891. * Package>>fetch:prefix: is now Package>>load:prefix:
  892. * Queue>>front replaced by Queue>>next
  893. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  894. * Queue>>back: replaced by Queue>>nextPut:
  895. * smalltalk.addMethod() does not use explicit JS selector
  896. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  897. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  898. * String>>asJavaScriptSelector moved to Kernel-Objects package
  899. + Object>>asString
  900. + Object>>putOn:
  901. + String>>isVowel
  902. + Collection>>putOn:
  903. + CharacterArray>>putOn:
  904. + Stream>><<
  905. + Stream>>write
  906. + SequenceableCollection>>newStream
  907. + SequenceableCollection>>readStream
  908. + SequenceableCollection>>stream
  909. + SequenceableCollection>>streamClass
  910. + SequenceableCollection>>writeStream
  911. + Collection>>isImmutable
  912. + Stream>>nextPutString:
  913. + StringStream>>nextPutString:
  914. + JSStream>>nextPutClassRefFunction:
  915. + String>>crlfSanitized
  916. + inlined Block now also responds to >>value:
  917. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  918. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  919. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  920. + Parser: Symbols for binarie selectores
  921. + Package>>commit
  922. + AIContext>>initializeLocals
  923. + ASTInterpreter>>withBlockContext:
  924. + smalltalk.allSelectors()
  925. + Object>>isCompiledMethod
  926. + Object>>isPackage
  927. + Object>>isBehavior
  928. + ClassMoved Announcemen class
  929. + Behavior>>includesBehavior:
  930. + Environment>>classes
  931. + Environment>>allSelectors
  932. + Environment>>removeProtocol:
  933. + Environment>>renameProtocol:to:in:
  934. + CompiledMethod>>protocol:
  935. + Smalltalk>>globalJsVariables
  936. + Smalltalk>>addGlobalJsVariable:
  937. + Smalltalk>>deleteGlobalJsVariable:
  938. - Object>>storeOn:
  939. - Object>>log:block:
  940. - Object>>printNl
  941. - Compiler-IR.st >>javascriptSelector
  942. - Compiler-IR.st >>nextPutVar:
  943. - Kernel-Collections.st >>asSuperSelector
  944. - Collection>>readStream
  945. - Collection>>stream
  946. - Collection>>streamClass
  947. - Collection>>writeStream
  948. - Symbol class (replaced with String)
  949. - IRInlinedNonLocalReturn class
  950. - IRInlinedSend>>nonLocalReturnInliner
  951. - IRNonLocalReturnInliner class
  952. - Package>>dependencies
  953. - Package>>dependencies:
  954. - Package>>properties
  955. - Package>>jsProperties
  956. - Package>>jsProperties:
  957. - Package>>propertiesAsJSON
  958. - Package>>propertyAt:
  959. - Package>>propertyAt:ifAbsent:
  960. - Package>>propertyAt:put:
  961. - Browser>>ajaxPutAt:data: