API-CHANGES.txt 21 KB

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