API-CHANGES.txt 18 KB

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