API-CHANGES.txt 18 KB

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