API-CHANGES.txt 21 KB

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